@canonical/design-tokens 0.1.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@canonical/design-tokens",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Canonical design tokens (DTCG format) with CSS custom property output.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "LGPL-3.0",
|
|
@@ -28,19 +28,34 @@
|
|
|
28
28
|
],
|
|
29
29
|
"files": [
|
|
30
30
|
"dist",
|
|
31
|
-
"tokens"
|
|
31
|
+
"tokens",
|
|
32
|
+
"bin"
|
|
32
33
|
],
|
|
34
|
+
"bin": {
|
|
35
|
+
"terrazzo-lsp": "./bin/terrazzo-lsp.mjs"
|
|
36
|
+
},
|
|
33
37
|
"scripts": {
|
|
34
38
|
"build": "tz build",
|
|
35
39
|
"build:all": "bun run build",
|
|
36
|
-
"check": "bun run check:webarchitect",
|
|
37
|
-
"check:
|
|
40
|
+
"check": "bun run check:biome && bun run check:tokens && bun run check:webarchitect",
|
|
41
|
+
"check:biome": "biome check",
|
|
42
|
+
"check:biome:fix": "biome check --write",
|
|
43
|
+
"check:fix": "bun run check:biome:fix",
|
|
44
|
+
"check:tokens": "tz check",
|
|
45
|
+
"check:webarchitect": "webarchitect assets",
|
|
46
|
+
"test": "vitest run"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"@canonical/terrazzo-lsp": "^0.3.0"
|
|
38
50
|
},
|
|
39
51
|
"devDependencies": {
|
|
40
|
-
"@canonical/terrazzo-plugin-css": "^0.
|
|
52
|
+
"@canonical/terrazzo-plugin-css": "^0.3.0",
|
|
41
53
|
"@canonical/webarchitect": "^0.17.1",
|
|
42
|
-
"@terrazzo/cli": "2.0.0
|
|
43
|
-
"@terrazzo/parser": "2.0.0
|
|
54
|
+
"@terrazzo/cli": "2.0.0",
|
|
55
|
+
"@terrazzo/parser": "2.0.0",
|
|
56
|
+
"ajv": "^8.17.0",
|
|
57
|
+
"ajv-formats": "^3.0.0",
|
|
58
|
+
"vitest": "^4.0.18"
|
|
44
59
|
},
|
|
45
60
|
"gitHead": "715800edd9e0cf4743af85aca438b37b08d55667"
|
|
46
61
|
}
|