-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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
{
"name": "live2d-widgets",
"version": "0.9.0",
"description": "Live2D widget for web pages",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc && rollup -c rollup.config.js -f iife",
"build-dev": "rollup -c rollup.config.js -f iife -o dist/waifu-tips.js -w",
"eslint": "eslint src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stevenjoezhang/live2d-widget.git"
},
"keywords": [
"Live2d"
],
"author": "stevenjoezhang <[email protected]>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/stevenjoezhang/live2d-widget/issues"
},
"homepage": "https://github.com/stevenjoezhang/live2d-widget#readme",
"dependencies": {
"@fortawesome/fontawesome-free": "^6.7.2"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/pluginutils": "^5.1.4",
"@types/node": "^22.10.2",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"rollup": "^4.29.1",
"terser": "^5.37.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
}
}