-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.08 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
{
"name": "udt-monorepo",
"version": "0.1.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"
},
"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": ">= 18.20.2",
"npm": ">= 10.5.0"
},
"devDependencies": {
"@types/node": "^18.19.59",
"@vitest/coverage-v8": "^2.1.3",
"del-cli": "^5.1.0",
"nx": "19.2.1",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
}
}