-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
68 lines (68 loc) · 1.81 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
{
"name": "@stencil/store",
"author": "StencilJS Team",
"version": "2.1.2",
"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.",
"license": "MIT",
"homepage": "https://stenciljs.com/docs/stencil-store",
"repository": {
"type": "git",
"url": "git://github.com/stenciljs/store.git"
},
"keywords": [
"stencil",
"redux",
"global",
"state",
"tunnel",
"hooks"
],
"type": "module",
"module": "dist/index.js",
"main": "dist/index.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"engines": {
"node": ">=18.0.0",
"npm": ">=6.0.0"
},
"scripts": {
"build": "run-s build.*",
"build.clean": "rm -rf dist",
"build.rollup": "rollup -c rollup.config.js",
"prettier": "npm run prettier.base -- --write",
"prettier.base": "prettier --cache 'src/**/*.ts'",
"prettier.dry-run": "npm run prettier.base -- --list-different",
"release": "np",
"test": "run-s test.*",
"test.prettier": "npm run prettier.dry-run",
"test.unit": "vitest",
"version": "npm run build"
},
"files": [
"dist"
],
"peerDependencies": {
"@stencil/core": ">=2.0.0 || >=3.0.0 || >= 4.0.0-beta.0 || >= 4.0.0"
},
"devDependencies": {
"@ionic/prettier-config": "^4.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@stencil/core": "^4.27.1",
"@types/node": "^22.13.5",
"@vitest/coverage-v8": "^3.0.7",
"np": "^10.2.0",
"npm-run-all2": "^7.0.2",
"prettier": "^3.5.2",
"rollup": "^4.34.8",
"typescript": "~5.7.3",
"vitest": "^3.0.7"
},
"prettier": "@ionic/prettier-config"
}