-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.56 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": "gluang",
"version": "0.0.5",
"description": "Simple shared app state management for Quarkc or litelement",
"type": "module",
"main": "./lib/index.umd.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.umd.js",
"types": "./lib/index.d.ts"
}
},
"files": [
"lib/*",
"README.md",
"package.json"
],
"scripts": {
"build": "rimraf lib && rollup -c",
"changelog": "conventional-changelog -p angular -n './changelog-config.cjs' -i CHANGELOG.md -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hellof2e/gluang.git"
},
"keywords": [
"state",
"management",
"gluang",
"quarkc",
"quarkd",
"quark",
"shared",
"global",
"observer",
"observable",
"lit",
"litelement"
],
"license": "LGPL-3.0-or-later",
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/plugin-proposal-decorators": "^7.22.5",
"@babel/plugin-transform-runtime": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^8.5.0",
"@types/node": "^14.18.52",
"conventional-changelog-cli": "^3.0.0",
"rimraf": "3.0.2",
"rollup": "2.77.0",
"rollup-plugin-filesize": "^10.0.0",
"tslib": "^2.6.2",
"typescript": "^4.9.5"
}
}