-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.28 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.28 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
{
"name": "@radix-ui/colors",
"version": "3.0.0",
"license": "MIT",
"source": "./src/index.ts",
"main": "./src/index.ts",
"module": "./src/index.ts",
"publishConfig": {
"access": "public",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
}
},
"sideEffects": false,
"scripts": {
"build": "pnpm clean && pnpm && pnpm build-js && pnpm build-css-modules",
"build-js": "tsup",
"build-css-modules": "node ./scripts/build-css-modules.js",
"prepublishOnly": "pnpm build",
"postpublish": "pnpm clean",
"clean": "git clean -fdX"
},
"devDependencies": {
"@types/node": "^24",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"typescript": "^5.9.2"
},
"homepage": "https://radix-ui.com/colors",
"keywords": [
"radix",
"colors"
],
"repository": {
"type": "git",
"url": "git+https://github.com/radix-ui/colors.git"
},
"bugs": {
"url": "https://github.com/radix-ui/colors/issues"
},
"packageManager": "pnpm@9.15.4"
}