-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.27 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@damsenviet/acpatterns",
"version": "1.0.0",
"description": "A JavaScript library for interacting with Animal Crossing pattern data structures and files.",
"module": "build/esm/index.js",
"types": "build/esm/index.d.ts",
"browser": "build/umd/index.js",
"scripts": {
"clean": "node scripts/clean.js",
"dev:docs": "vuepress dev docs",
"build:docs": "vuepress build docs",
"watch": "node scripts/watch.js",
"watch:esm": "tsc -w",
"build": "node scripts/build.js",
"build:esm": "tsc",
"test": "jest --passWithNoTests",
"install-peers": "npm install babylonjs babylonjs-loaders --no-save"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DamSenViet/acpatterns-js.git"
},
"bugs": {
"url": "https://github.com/DamSenViet/acpatterns-js/issues"
},
"homepage": "https://github.com/DamSenViet/acpattern-js#readme",
"author": "DamSenViet",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@babel/runtime": "^7.12.5",
"babel-loader": "^8.1.0",
"clear": "^0.1.0",
"dotenv": "^8.2.0",
"fs-extra": "^9.0.0",
"jest": "^26.0.1",
"lodash": "^4.17.20",
"node-sass": "^4.14.1",
"sass-loader": "^7.3.1",
"signale": "^1.4.0",
"terser-webpack-plugin": "^4.2.2",
"ts-loader": "^7.0.4",
"typescript": "^3.9.2",
"vuepress": "^1.6.0",
"vuepress-plugin-typescript": "^0.3.1",
"vuepress-theme-book": "0.0.5",
"vuepress-types": "^0.9.4",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-format-messages": "^2.0.6",
"yargs": "^15.3.1"
},
"dependencies": {
"@types/chroma-js": "^2.1.0",
"@zxing/library": "^0.17.1",
"chroma-js": "^2.1.0",
"pnnquant": "git+https://github.com/DamSenViet/PnnQuant.js.git#20fea867d9a0dce4b0a0a0d865cb798c8731eb34",
"ts-custom-error": "^3.2.0",
"ts-polyfill": "^3.8.2"
},
"peerDependencies": {
"babylonjs": "^4.1.0",
"babylonjs-loaders": "^4.1.0"
},
"peerDependenciesMeta": {
"babylonjs": {
"optional": true
},
"babylonjs-loaders": {
"optional": true
}
},
"unpkg": "build/umd/index.js"
}