-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.69 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.69 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@aurelia/storybook",
"version": "2.2.1",
"description": "A Storybook plugin to render Aurelia 2 components using Vite, Webpack, or Rsbuild/Rspack",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.19.0 || >=22.12.0"
},
"scripts": {
"build": "rollup -c",
"build:types": "tsc --project tsconfig.build.json --emitDeclarationOnly",
"changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s -r 0",
"sync:versions": "node scripts/sync-versions.cjs",
"sync:versions:check": "node scripts/sync-versions.cjs --check",
"watch": "rollup -c -w",
"test": "NODE_OPTIONS=--no-deprecation jest"
},
"peerDependencies": {
"@aurelia/runtime-html": "^2.0.0-rc.0",
"@aurelia/vite-plugin": "^2.0.0-rc.0",
"@rsbuild/core": "^1.7.2",
"@storybook/builder-vite": "^10.2.0",
"@storybook/builder-webpack5": "^10.2.0",
"aurelia": "^2.0.0-rc.0",
"storybook": "^10.2.0",
"storybook-builder-rsbuild": "^3.2.2"
},
"peerDependenciesMeta": {
"@rsbuild/core": {
"optional": true
},
"@storybook/builder-vite": {
"optional": true
},
"@storybook/builder-webpack5": {
"optional": true
},
"storybook-builder-rsbuild": {
"optional": true
}
},
"devDependencies": {
"@aurelia/webpack-loader": "^2.0.0-rc.0",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.3",
"@rsbuild/core": "^1.7.2",
"@storybook/builder-vite": "^10.2.0",
"@types/jest": "^30.0.0",
"conventional-changelog-cli": "^5.0.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"glob": "^11.0.3",
"jest": "^30.0.2",
"jest-environment-jsdom": "^30.0.2",
"rollup": "^4.44.0",
"storybook": "^10.2.0",
"ts-jest": "^29.4.0",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./preset": {
"types": "./dist/preset.d.ts",
"default": "./dist/preset.js"
},
"./preview": {
"types": "./dist/preview.d.ts",
"default": "./dist/preview.js"
},
"./preview/types": {
"types": "./dist/preview/types.d.ts",
"default": "./dist/preview/types-runtime.js"
},
"./preview/storybook-types": {
"types": "./dist/preview/storybook-types.d.ts",
"default": "./dist/preview/storybook-types-runtime.js"
},
"./preview/helpers": {
"types": "./dist/preview/helpers.d.ts",
"default": "./dist/preview/helpers.js"
}
}
}