forked from jno-de/rpg-me
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.08 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
{
"name": "@jno-de/rpg-me",
"version": "0.0.0",
"description": "Webcomponent rpg-me following hax / open-wc recommendations",
"license": "Apache-2.0",
"author": {
"name": "jno-de"
},
"keywords": [
"webcomponents",
"lit",
"haxtheweb"
],
"repository": {
"type": "git",
"url": "https://github.com/jno-de/rpg-me"
},
"type": "module",
"main": "rpg-me.js",
"module": "rpg-me.js",
"scripts": {
"start": "web-dev-server",
"build": "rimraf public && rollup -c rollup.config.js && npm run analyze",
"analyze": "cem analyze --litelement --exclude public",
"release": "npm run build && commit-and-tag-version && git push --follow-tags origin main && npm publish",
"test": "web-test-runner test/**/*.test.js --coverage --node-resolve",
"test:watch": "web-test-runner test/**/*.test.js --node-resolve --watch"
},
"dependencies": {
"@haxtheweb/d-d-d": "^9.0.27",
"@haxtheweb/i18n-manager": "^9.0.22",
"@haxtheweb/rpg-character": "^9.0.27",
"lit": "^3.2.0",
"roughjs": "4.4.0",
"wired-elements": "^3.0.0-rc.6"
},
"devDependencies": {
"@babel/preset-env": "^7.16.4",
"@custom-elements-manifest/analyzer": "^0.10.3",
"@open-wc/building-rollup": "^3.0.2",
"@open-wc/testing": "^4.0.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@web/dev-server": "^0.4.6",
"@web/rollup-plugin-html": "^2.3.0",
"@web/rollup-plugin-import-meta-assets": "^2.2.1",
"@web/test-runner": "^0.19.0",
"babel-plugin-template-html-minifier": "^4.1.0",
"babel-plugin-transform-dynamic-import": "^2.1.0",
"commit-and-tag-version": "^12.4.1",
"rimraf": "^5.0.7",
"rollup-plugin-esbuild": "^6.1.1"
},
"private": false,
"publishConfig": {
"access": "public"
},
"hax": {
"cli": true
},
"customElements": "custom-elements.json"
}