-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.48 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.48 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
{
"name": "@digital-go-jp/tailwind-theme-plugin",
"version": "0.3.4",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs.js",
"import": "./dist/index.es.js"
},
"./v4": "./dist/v4.css"
},
"author": "Digital Agency",
"homepage": "https://github.com/digital-go-jp/tailwind-theme-plugin#readme",
"repository": {
"type": "git",
"url": "https://github.com/digital-go-jp/tailwind-theme-plugin"
},
"bugs": {
"url": "https://github.com/digital-go-jp/tailwind-theme-plugin/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"license": "MIT",
"files": [
"dist/**"
],
"scripts": {
"generate": "tsx scripts/generate-theme.ts",
"generate:v4": "tsx scripts/generate-v4-theme.ts",
"build": "npm run generate && vite build && tsc && npm run generate:v4",
"format": "biome format --write src/*.ts",
"lint": "biome lint **/*.ts **/*.js"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@digital-go-jp/design-tokens": "^1.1.7",
"@tsconfig/node22": "^22.0.3",
"@types/node": "^24.10.1",
"autoprefixer": "^10.4.23",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.3.0"
},
"peerDependencies": {
"tailwindcss": "^3.4.17 || ^4.0.0"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=22",
"onFail": "error"
}
}
}