-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.19 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
{
"name": "@sp-design/components-web-components",
"private": true,
"version": "0.6.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"example": "example"
},
"scripts": {
"typecheck": "tsc --noEmit",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build": "rimraf dist && run-s build:*",
"build:ts": "tsc -p tsconfig-build.json",
"build:css": "node tools/copy-css.js",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format": "run-s \"format:* !format:prettier:check\"",
"format:prettier": "prettier --write '(.storybook|src|stories|tests|tools)/**/*.ts'",
"format:prettier:check": "prettier --check '(.storybook|src|stories|tests|tools)/**/*.ts'",
"format:lint": "stylelint --fix 'src/**/*.css'",
"test": "vitest"
},
"files": [
"dist"
],
"author": "",
"license": "ISC",
"dependencies": {
"@acab/reset.css": "0.11.0",
"@sp-design/token": "git+https://github.com/uzabase/sp-design-token.git#semver:^9.0.1",
"@ub-design/components-web-components": "git+https://github.com/uzabase/ub-design-components-web-components.git#semver:^0.1.3"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@storybook/addon-essentials": "^8.5.3",
"@storybook/blocks": "^8.5.3",
"@storybook/web-components": "^8.5.3",
"@storybook/web-components-vite": "^8.5.3",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.13.1",
"@vitest/browser": "^3.0.5",
"dedent": "^1.5.3",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-storybook": "^0.11.2",
"eslint-plugin-wc": "^2.2.0",
"globals": "^15.14.0",
"lit": "^3.2.1",
"npm-run-all": "^4.1.5",
"playwright": "^1.50.1",
"prettier": "3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"rimraf": "^6.0.1",
"shadow-dom-testing-library": "^1.11.3",
"storybook": "^8.5.3",
"stylelint": "^16.14.1",
"stylelint-config-standard": "^37.0.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0",
"vitest": "^3.0.5"
}
}