@silknet-ds/tokens 0.1.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 ADDED
@@ -0,0 +1,39 @@
1
+ {
2
+ "name": "@silknet-ds/tokens",
3
+ "version": "0.1.0",
4
+ "description": "Silknet design system tokens — generated CSS variables for light and dark themes.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "Sandro Tarkhnishvili <s.tarkhana@gmail.com>",
8
+ "keywords": [
9
+ "design-tokens",
10
+ "css-variables",
11
+ "design-system",
12
+ "silknet"
13
+ ],
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/tamashebistvis333-lgtm/silknet-ds.git",
17
+ "directory": "packages/tokens"
18
+ },
19
+ "homepage": "https://github.com/tamashebistvis333-lgtm/silknet-ds/tree/main/packages/tokens#readme",
20
+ "bugs": "https://github.com/tamashebistvis333-lgtm/silknet-ds/issues",
21
+ "publishConfig": {
22
+ "access": "public"
23
+ },
24
+ "sideEffects": true,
25
+ "files": [
26
+ "dist",
27
+ "README.md"
28
+ ],
29
+ "exports": {
30
+ "./tokens.css": "./dist/tokens.css",
31
+ "./tokens.light.css": "./dist/tokens.light.css",
32
+ "./tokens.dark.css": "./dist/tokens.dark.css",
33
+ "./package.json": "./package.json"
34
+ },
35
+ "scripts": {
36
+ "build": "node scripts/build.js",
37
+ "prepack": "npm run build"
38
+ }
39
+ }