-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.45 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.45 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
{
"name": "@nl-design-system-community/design-tokens-schema",
"version": "1.1.0",
"author": "Community for NL Design System",
"description": "Zod schema's for Design Tokens JSON format",
"license": "EUPL-1.2",
"keywords": [
"expertteam-digitale-toegankelijkheid",
"nl-design-system"
],
"type": "module",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"files": [
"dist/"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git+ssh",
"url": "git@github.com:nl-design-system/theme-wizard.git",
"directory": "packages/design-tokens-schema"
},
"scripts": {
"test": "vitest",
"dev": "vite build --watch",
"test-coverage": "vitest run --coverage",
"build": "vite build",
"clean": "rimraf dist/"
},
"devDependencies": {
"@nl-design-system-community/ma-design-tokens": "2.5.0",
"@nl-design-system-unstable/start-design-tokens": "3.0.0",
"@nl-design-system-unstable/voorbeeld-design-tokens": "7.4.0",
"@types/dlv": "1.1.5",
"@vitest/coverage-v8": "4.0.16",
"rimraf": "6.1.2",
"typescript": "5.9.3",
"vite": "7.3.0",
"vite-plugin-dts": "4.5.4",
"vitest": "4.0.16"
},
"dependencies": {
"@projectwallace/css-parser": "0.11.4",
"colorjs.io": "0.6.0",
"dlv": "1.1.3",
"zod": "4.3.4"
}
}