forked from Tap30/web-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.65 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
69
70
71
{
"name": "@tapsioss/web-components",
"version": "0.0.0-alpha-7",
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts",
"dist/**/*.css"
],
"type": "module",
"scripts": {
"release": "pnpm build && pnpm publish",
"build": "rm -rf dist && tsc --project tsconfig.build.json && pnpm analyze && cp -r ./tokens ./dist && cp -r ./styles ./dist",
"dev": "tsc --watch --preserveWatchOutput & wds",
"storybook": "storybook dev -p 3001",
"test": "wtr --watch",
"lint:ts": "tsc --project tsconfig.json",
"lint:ecma": "eslint ./src/**/* --fix",
"lint": "pnpm lint:ts && pnpm lint:ecma",
"fmt": "prettier src/**/* --write --fix",
"docs:dev": "cp ./dist/custom-elements.json ./docs/dev/components/custom-elements.json && vitepress dev docs",
"docs:build": "vitepress build docs && cp ./dist/custom-elements.json ./docs/.vitepress/dist/dev/components/custom-elements.json && cp ./docs/dev/components/elements-config.json ./docs/.vitepress/dist/dev/components/elements-config.json",
"docs:preview": "vitepress preview docs",
"analyze": "cem analyze --litelement --outdir dist --globs \"src/**/index.ts\""
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.10.2",
"@eslint/js": "^9.1.1",
"@open-wc/lit-helpers": "^0.7.0",
"@open-wc/testing": "^4.0.0",
"@storybook/addon-actions": "^8.1.5",
"@storybook/addon-essentials": "^7.6.16",
"@storybook/addon-links": "^7.6.16",
"@storybook/blocks": "^7.6.16",
"@storybook/manager-api": "^8.1.5",
"@storybook/theming": "^8.1.5",
"@storybook/web-components": "^7.6.16",
"@storybook/web-components-vite": "^7.6.16",
"@tapsioss/icons": "0.0.0-alpha-8",
"@types/chai": "^4.3.12",
"@types/eslint__js": "^8.42.3",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.10",
"@types/sinon": "^17.0.3",
"@web/dev-server": "^0.4.2",
"@web/dev-server-esbuild": "^1.0.2",
"@web/test-runner": "^0.18.0",
"cemnama": "0.0.0-alpha-5",
"custom-elements-manifest": "^2.1.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-lit": "^1.15.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-wc": "^2.2.0",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^4.1.0",
"sinon": "^18.0.0",
"storybook": "^7.6.16",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.1",
"vitepress": "^1.1.4"
},
"dependencies": {
"@floating-ui/dom": "^1.6.4",
"lit": "^3.1.2",
"tslib": "^2.7.0"
}
}