-
Notifications
You must be signed in to change notification settings - Fork 690
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.23 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.23 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
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@craftcms/cp",
"version": "0.0.0",
"description": "CP Components for Craft CMS",
"type": "module",
"main": "dist/cp.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/craftcms/npm-packages.git"
},
"keywords": [
"craftcms",
"cp",
"web-components"
],
"scripts": {
"test": "vitest run",
"test:dev": "vitest",
"test:coverage": "vitest run --coverage",
"dev": "node ./scripts/build.js --develop",
"prebuild": "npm run format",
"build": "node ./scripts/build.js",
"format": "npx prettier --write .",
"check:format": "prettier --check .",
"check:exports": "attw --pack .",
"check:types": "tsc --noEmit",
"storybook": "storybook dev -p 6006",
"build:storybook": "storybook build",
"build:manifest": "custom-elements-manifest analyze --litelement --outdir dist",
"generate:vue-wrappers": "node ./scripts/generate-vue-wrappers.js",
"generate:colors": "node ./scripts/generate-colors.js"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/cp.d.mts",
"import": "./dist/cp.mjs",
"require": "./dist/cp.cjs"
},
"./*": "./dist/*",
"./dist/*": "./dist/*",
"./vue/*": "./dist/vue/*",
"./types/*": "./src/types/*",
"./services/*": "./dist/services/*",
"./styles/*": "./dist/styles/*",
"./utilities/*": "./dist/utilities/*",
"./components/*": "./dist/components/*",
"./custom-elements.json": "./dist/custom-elements.json",
"./tailwind.css": "./tailwind.css"
},
"author": "Pixel & Tonic, Inc. <support@pixelandtonic.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/craftcms/npm-packages/issues"
},
"homepage": "https://github.com/craftcms/npm-packages#readme",
"peerDependencies": {
"@awesome.me/webawesome": "^3.0.0",
"@lion/ui": "0.x",
"lit": "3.x"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@awesome.me/webawesome": "^3.0.0",
"@chromatic-com/storybook": "^4.0.1",
"@custom-elements-manifest/analyzer": "^0.10.10",
"@lion/ui": "^0.14.2",
"@shoelace-style/shoelace": "^2.20.1",
"@storybook/addon-a11y": "^9.1.5",
"@storybook/addon-docs": "^9.1.5",
"@storybook/addon-themes": "^9.1.5",
"@storybook/addon-vitest": "^9.1.5",
"@storybook/web-components-vite": "^9.1.5",
"@total-typescript/tsconfig": "^1.0.4",
"@types/jquery": "^3.5.32",
"@types/node": "^24.0.10",
"@vitest/browser": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"@wc-toolkit/storybook-helpers": "^9.0.1",
"del": "^8.0.1",
"dom-accessibility-api": "^0.7.1",
"globby": "^14.1.0",
"happy-dom": "^18.0.1",
"lit": "^3.3.1",
"ora": "^9.0.0",
"playwright": "^1.53.2",
"plop": "^4.0.1",
"recursive-copy": "^2.0.14",
"rimraf": "^6.0.1",
"shadow-dom-testing-library": "^1.13.1",
"storybook": "^9.1.5",
"tsdown": "^0.16.6",
"typescript": "^5.8.3",
"unplugin-dts": "^1.0.0-beta.0",
"vite-plugin-dts": "^4.5.4",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
},
"dependencies": {
"@github/relative-time-element": "^4.5.0",
"axios": "^1.12.2"
},
"customElements": "dist/custom-elements.json"
}