-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
61 lines (61 loc) · 1.62 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
{
"name": "@stencil/store",
"version": "2.0.16",
"description": "Store is a lightweight shared state library by the StencilJS core team. Implements a simple key/value map that efficiently re-renders components when necessary.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
},
"scripts": {
"build": "rm -rf dist && tsc -p . && npm run rollup",
"prettier": "npm run prettier.base -- --write",
"prettier.base": "prettier --cache 'src/**/*.ts'",
"prettier.dry-run": "npm run prettier.base -- --list-different",
"release": "np",
"rollup": "rollup -c rollup.config.mjs",
"test": "jest",
"test.ci": "npm run test && npm run prettier.dry-run",
"version": "npm run build"
},
"keywords": [
"stencil",
"redux",
"global",
"state",
"tunnel",
"hooks"
],
"files": [
"dist"
],
"author": "Ionic Team",
"license": "MIT",
"homepage": "https://stenciljs.com/docs/stencil-store",
"peerDependencies": {
"@stencil/core": ">=2.0.0 || >=3.0.0 || >= 4.0.0-beta.0 || >= 4.0.0"
},
"devDependencies": {
"@ionic/prettier-config": "^4.0.0",
"@stencil/core": "^4.0.0",
"@types/jest": "^29.0.0",
"@types/node": "^20.2.0",
"jest": "^29.0.0",
"np": "^10.0.0",
"prettier": "^3.0.0",
"rollup": "^4.0.0",
"ts-jest": "^29.0.0",
"typescript": "~5.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/ionic-team/stencil-store.git"
},
"prettier": "@ionic/prettier-config",
"volta": {
"node": "20.15.1",
"npm": "10.8.2"
}
}