-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
58 lines (58 loc) · 2.33 KB
/
package.json
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "animal-crossing",
"version": "8.2.0",
"description": "A database for Animal Crossing: New Horizons.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build:src": "./node_modules/typescript/bin/tsc",
"build:minify": "bash ./bin/minify.sh",
"build:types": "bash ./bin/types.sh",
"build:docs": "npm run build:src && /bin/rm -rf ./module/docs; ./node_modules/typedoc/bin/typedoc --githubPages false --tsconfig module/tsconfig.json --out ./module/docs module/index.ts",
"build:module-src": "./node_modules/typescript/bin/tsc --outDir lib -p module",
"build:module": "npm run build:src && npm run start && /bin/rm -rf ./module/data &>/dev/null && npm run build:minify && npm run build:types && npm run build:module-src && npm run build:docs",
"publish:patch": "./node_modules/standard-version/bin/cli.js --release-as patch && npm run publish",
"publish:minor": "./node_modules/standard-version/bin/cli.js --release-as minor && npm run publish",
"publish:major": "./node_modules/standard-version/bin/cli.js --release-as major && npm run publish",
"publish": "git push --follow-tags origin master && npm publish",
"start": "/bin/rm -rf ./json/combined ./json/data ./json/raw && node ./build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Norviah/animal-crossing.git"
},
"keywords": [
"Animal Crossing"
],
"author": "norviah",
"license": "MIT",
"bugs": {
"url": "https://github.com/Norviah/animal-crossing/issues"
},
"homepage": "https://github.com/Norviah/animal-crossing/tree/master/module#readme",
"devDependencies": {
"@norviah/sheets": "^4.2.0",
"@types/app-root-path": "^1.2.4",
"@types/lodash": "^4.14.177",
"@types/node": "^16.11.11",
"@types/ws": "^8.2.1",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"app-root-path": "^3.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"json-beautify": "^1.1.1",
"lodash": "^4.17.21",
"prettier": "^2.5.1",
"quicktype": "^15.0.260",
"standard-version": "^9.3.2",
"typedoc": "^0.22.10",
"typedoc-plugin-markdown": "^3.11.7",
"typedoc-plugin-missing-exports": "^0.22.6",
"typescript": "^4.5.2"
}
}