-
-
Notifications
You must be signed in to change notification settings - Fork 138
/
package.json
86 lines (86 loc) · 2.6 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
78
79
80
81
82
83
84
85
86
{
"name": "pixi-live2d-display",
"version": "v0.5.0-beta",
"description": "Live2D plugin for PixiJS",
"main": "dist/index.js",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.js"
},
"./cubism2": {
"types": "./types/index.d.ts",
"import": "./dist/cubism2.es.js",
"require": "./dist/cubism2.js"
},
"./cubism4": {
"types": "./types/index.d.ts",
"import": "./dist/cubism4.es.js",
"require": "./dist/cubism4.js"
},
"./extra": {
"types": "./types/extra.d.ts",
"import": "./dist/extra.es.js",
"require": "./dist/extra.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/guansss/pixi-live2d-display.git"
},
"author": "guansss <821143943@qq.com>",
"license": "MIT",
"scripts": {
"setup": "node scripts/setup.js",
"playground": "vite",
"test": "vitest",
"test:u": "vitest --update",
"build": "rimraf dist && node scripts/build.js",
"pretype": "node scripts/patch-dts-generator.js",
"type": "rimraf types && dts-bundle-generator src/index.ts --no-check --project=tsconfig.build.json -o=types/index.d.ts && dts-bundle-generator src/extra.ts --no-check --project=tsconfig.build.json -o=types/extra.d.ts ",
"posttype": "node scripts/patch-types.js",
"doc": "node scripts/gen-docs.js",
"serve-docs": "mkdocs serve -f docs/mkdocs.yml",
"deploy": "gh-pages -d site",
"prepublishOnly": "npm run type && npm run build && npm run test",
"lint": "eslint . --config .eslintrc.cjs --rule \"prettier/prettier: error\"",
"lint:fix": "npm run lint -- --fix"
},
"files": [
"dist",
"types"
],
"types": "types/index.d.ts",
"peerDependencies": {
"pixi.js": "^7.0.0"
},
"devDependencies": {
"@types/lodash-es": "^4.17.6",
"@types/node": "^20.8.9",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@vitest/browser": "^1.0.0-beta.5",
"birpc": "^0.2.14",
"dts-bundle-generator": "^6.11.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"gh-pages": "^6.1.0",
"glob": "^8.0.3",
"handlebars": "^4.7.7",
"jest-image-snapshot": "^6.2.0",
"jszip": "^3.10.0",
"lodash-es": "^4.17.21",
"pixi.js": "^7.3.2",
"prettier": "^3.0.3",
"rimraf": "^3.0.2",
"type-fest": "^4.4.0",
"typescript": "^5.2.2",
"vite": "^5.0.0",
"vite-plugin-node-polyfills": "^0.17.0",
"vitest": "^1.0.1",
"webdriverio": "^8.17.0"
}
}