-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.27 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.27 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
{
"name": "@nl-design-system-community/clippy-components",
"version": "1.1.0",
"type": "module",
"module": "./dist/index.js",
"exports": {
"./*": {
"import": "./dist/*/index.js",
"types": "./dist/*/index.d.ts"
},
"./src/*": "./src/*",
"./assets/*": "./assets/*"
},
"files": [
"dist/"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "https://github.com/nl-design-system/theme-wizard.git",
"directory": "packages/clippy-components"
},
"scripts": {
"dev": "vite build --watch",
"types": "tsc -p tsconfig.json --emitDeclarationOnly",
"type-check": "tsc --noEmit --project tsconfig.json",
"prebuild": "node --env-file-if-exists=.env ./scripts/download-font-list.ts",
"build": "pnpm run type-check && vite build",
"clean": "rimraf dist/",
"lint": "pnpm run --sequential '/^lint:.+$/'",
"lint:css": "stylelint .",
"lint:js": "eslint",
"lint-fix:css": "pnpm run lint:css --fix",
"lint-fix:js": "eslint --fix",
"lint-build": "tsc --noEmit --project tsconfig.json",
"test": "pnpm run '/^test:.+$/'",
"test-build": "vitest --run --coverage",
"test-install-browsers": "playwright install chromium",
"test:unit": "vitest --run",
"test:watch": "vitest --watch",
"preview": "vite preview"
},
"dependencies": {
"@amsterdam/design-system-css": "2.2.0",
"@nl-design-system-candidate/button-css": "1.0.0",
"@nl-design-system-candidate/code-css": "2.0.3",
"@nl-design-system-candidate/color-sample-css": "1.0.4",
"@nl-design-system-candidate/heading-css": "1.1.3",
"@nl-design-system-candidate/link-css": "2.0.3",
"@utrecht/button-css": "3.0.1",
"@utrecht/combobox-css": "2.0.1",
"@utrecht/listbox-css": "2.0.1",
"@utrecht/textbox-css": "3.0.1",
"colorjs.io": "0.6.0-beta.3",
"lit": "3.3.2",
"memoize": "10.2.0"
},
"devDependencies": {
"@types/dlv": "1.1.5",
"@types/react": "18.3.23",
"@vitest/browser-playwright": "4.0.16",
"@vitest/coverage-v8": "4.0.16",
"glob": "13.0.0",
"playwright": "1.57.0",
"postcss-lit": "1.3.1",
"rimraf": "6.1.2",
"typescript": "5.9.3",
"vite": "7.3.0",
"vite-plugin-dts": "4.5.4",
"vitest": "4.0.16"
}
}