-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 916 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 916 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "@xivapi/nodestone",
"version": "0.2.7",
"main": "lib/index.js",
"license": "MIT",
"typings": "types/index.d.ts",
"engines": {
"node": ">=20.x"
},
"scripts": {
"express:start": "rimraf dist && tsc -p tsconfig.json && node dist/lib/server.js",
"copyfiles": "copyfiles package.json README.md dist",
"release": "rimraf dist && tsc -p tsconfig.json && yarn run copyfiles && npm publish ./dist"
},
"dependencies": {
"@types/express": "^4.17.21",
"axios": "^1.15.0",
"express": "^5.2.1",
"linkedom": "^0.16.11",
"lodash": "^4.18.1",
"pino": "^8.19.0",
"pino-http": "^9.0.0",
"regex-translator": "^0.2.8",
"typescript": "^5.4.3"
},
"devDependencies": {
"@types/jsdom": "^21.1.6",
"@types/lodash": "^4.17.0",
"@types/node": "^20.11.30",
"copyfiles": "^2.4.1",
"rimraf": "^5.0.5"
}
}