tokvista 1.0.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/LICENSE +21 -0
- package/README.md +200 -0
- package/dist/index.cjs +82 -0
- package/dist/index.d.cts +261 -0
- package/dist/index.d.ts +261 -0
- package/dist/index.js +82 -0
- package/dist/styles.css +3428 -0
- package/package.json +94 -0
package/package.json
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "tokvista",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Interactive visual documentation for design tokens.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"sideEffects": [
|
|
10
|
+
"**/*.css"
|
|
11
|
+
],
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"access": "public",
|
|
14
|
+
"registry": "https://registry.npmjs.org"
|
|
15
|
+
},
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "https://github.com/nibin-org/tokvista.git"
|
|
19
|
+
},
|
|
20
|
+
"homepage": "https://github.com/nibin-org/tokvista#readme",
|
|
21
|
+
"bugs": {
|
|
22
|
+
"url": "https://github.com/nibin-org/tokvista/issues"
|
|
23
|
+
},
|
|
24
|
+
"exports": {
|
|
25
|
+
".": {
|
|
26
|
+
"types": "./dist/index.d.ts",
|
|
27
|
+
"import": "./dist/index.js",
|
|
28
|
+
"require": "./dist/index.cjs",
|
|
29
|
+
"default": "./dist/index.js"
|
|
30
|
+
},
|
|
31
|
+
"./styles.css": {
|
|
32
|
+
"import": "./dist/styles.css",
|
|
33
|
+
"require": "./dist/styles.css",
|
|
34
|
+
"default": "./dist/styles.css"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"workspaces": [
|
|
38
|
+
"demo"
|
|
39
|
+
],
|
|
40
|
+
"files": [
|
|
41
|
+
"dist",
|
|
42
|
+
"README.md"
|
|
43
|
+
],
|
|
44
|
+
"scripts": {
|
|
45
|
+
"build": "tsup && node scripts/postbuild.cjs",
|
|
46
|
+
"dev": "tsup --watch",
|
|
47
|
+
"prepublishOnly": "npm run build",
|
|
48
|
+
"typecheck": "tsc --noEmit",
|
|
49
|
+
"test": "vitest run"
|
|
50
|
+
},
|
|
51
|
+
"keywords": [
|
|
52
|
+
"figma",
|
|
53
|
+
"design-tokens",
|
|
54
|
+
"tokens",
|
|
55
|
+
"design-system",
|
|
56
|
+
"storybook",
|
|
57
|
+
"styleguide",
|
|
58
|
+
"react",
|
|
59
|
+
"documentation",
|
|
60
|
+
"style-dictionary",
|
|
61
|
+
"token-studio",
|
|
62
|
+
"figma-tokens",
|
|
63
|
+
"design-tokens-visualizer",
|
|
64
|
+
"ui-tokens",
|
|
65
|
+
"css-variables",
|
|
66
|
+
"design-ops",
|
|
67
|
+
"design-system-docs",
|
|
68
|
+
"color-palette",
|
|
69
|
+
"spacing-scale",
|
|
70
|
+
"tailwind-tokens"
|
|
71
|
+
],
|
|
72
|
+
"author": {
|
|
73
|
+
"name": "Nibin Kurian",
|
|
74
|
+
"url": "https://www.linkedin.com/in/nibin-kurian"
|
|
75
|
+
},
|
|
76
|
+
"license": "MIT",
|
|
77
|
+
"peerDependencies": {
|
|
78
|
+
"react": ">=18.0.0",
|
|
79
|
+
"react-dom": ">=18.0.0"
|
|
80
|
+
},
|
|
81
|
+
"devDependencies": {
|
|
82
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
83
|
+
"@testing-library/react": "^16.3.2",
|
|
84
|
+
"@types/react": "^18.2.0",
|
|
85
|
+
"@types/react-dom": "^18.2.0",
|
|
86
|
+
"happy-dom": "^20.5.3",
|
|
87
|
+
"react": "^18.2.0",
|
|
88
|
+
"react-dom": "^18.2.0",
|
|
89
|
+
"tsup": "^8.0.0",
|
|
90
|
+
"typescript": "^5.0.0",
|
|
91
|
+
"vitest": "^4.0.18",
|
|
92
|
+
"vitest-axe": "^0.1.0"
|
|
93
|
+
}
|
|
94
|
+
}
|