-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.17 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
{
"name": "udt-monorepo",
"version": "0.0.0",
"private": true,
"description": "Monorepo for UDT spec, reference JS lib and tools.",
"type": "module",
"scripts": {
"clean": "nx run-many -t clean",
"lint": "nx run-many -t lint",
"build": "nx run-many -t build",
"test": "nx run-many -t test",
"watch": "nx run-many -t watch",
"release": "changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/universal-design-tokens/udt.git"
},
"keywords": [
"udt",
"design-tokens",
"design-systems",
"spec",
"json-schema"
],
"author": "James Nash (https://cirrus.twiddles.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/universal-design-tokens/udt/issues"
},
"homepage": "https://github.com/universal-design-tokens/udt#readme",
"workspaces": [
"./packages/*"
],
"engines": {
"node": ">= 20",
"npm": ">= 10"
},
"devDependencies": {
"@types/node": "^18.19.64",
"@vitest/coverage-v8": "^2.1.5",
"del-cli": "^6.0.0",
"nx": "20.1.2",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
},
"dependencies": {
"@changesets/cli": "^2.27.10"
}
}