-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.08 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.08 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@quefep/theme-kit",
"version": "2.0.0",
"type": "module",
"description": "A cross-framework, framework-agnostic SDK for managing design tokens in modern web applications",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"bin": {
"theme-kit": "dist/cli.js"
},
"files": [
"dist",
"react",
"vue",
"angular",
"vanilla"
],
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./react": {
"import": "./react/index.esm.js",
"require": "./react/index.js",
"types": "./react/index.d.ts"
},
"./vue": {
"import": "./vue/index.esm.js",
"require": "./vue/index.js",
"types": "./vue/index.d.ts"
},
"./angular": {
"import": "./angular/index.esm.js",
"require": "./angular/index.js",
"types": "./angular/index.d.ts"
},
"./vanilla": {
"import": "./vanilla/index.esm.js",
"require": "./vanilla/index.js",
"types": "./vanilla/index.d.ts"
}
},
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"dev": "npm run build:watch",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"lint": "echo 'Linting skipped for now'",
"lint:fix": "echo 'Linting skipped for now'",
"type-check": "tsc --noEmit",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"preversion": "npm run build",
"version": "npm run build",
"postversion": "git push && git push --tags"
},
"keywords": [
"design-tokens",
"theme",
"theming",
"design-system",
"react",
"vue",
"angular",
"typescript",
"css",
"scss",
"tokens"
],
"author": "ThemeKit Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/M1tsumi/Theme-Kit.git"
},
"bugs": {
"url": "https://github.com/M1tsumi/Theme-Kit/issues"
},
"homepage": "https://github.com/M1tsumi/Theme-Kit#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-typescript": "^11.1.0",
"@rollup/plugin-babel": "^6.0.0",
"@babel/core": "^7.22.0",
"@babel/preset-react": "^7.22.0",
"@babel/preset-typescript": "^7.22.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"chokidar": "^3.5.3",
"commander": "^11.0.0",
"eslint": "^8.40.0",
"jest": "^29.5.0",
"rollup": "^3.20.0",
"rollup-plugin-dts": "^5.3.0",
"ts-jest": "^29.1.0",
"tslib": "^2.5.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"vue": ">=3.0.0",
"@angular/core": ">=12.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"vue": {
"optional": true
},
"@angular/core": {
"optional": true
}
},
"engines": {
"node": ">=14.0.0"
}
}