-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.83 KB
/
package.json
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": "jsx-css-module-transforms",
"version": "0.3.2-beta",
"description": "A babel plugin to transform string classnames into css-module classnames",
"license": "MIT",
"author": "Tushar Singh",
"repository": "github:tusharsnn/jsx-css-module-transforms",
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.cts",
"main": "dist/index.cjs",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"keywords": [
"module-classname-transforms"
],
"scripts": {
"release": "npx tsup-node --config tsup.build.config.ts",
"build": "npx tsup-node --config tsup.build.config.ts --sourcemap --watch",
"build:nowatch": "npx tsup-node --config tsup.build.config.ts --sourcemap",
"dev": "npx tsup-node --watch",
"dev:nowatch": "npx tsup-node",
"test": "npm run dev:nowatch && NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest",
"test:cov": "npm run dev:nowatch && NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest --coverage"
},
"dependencies": {
"@babel/core": "^7.24.3",
"@babel/plugin-syntax-jsx": "^7.24.7",
"@babel/plugin-syntax-typescript": "^7.24.7",
"chalk": "^4.1.2",
"unplugin": "^1.10.1"
},
"peerDependencies": {
"webpack": "^5.91.0"
},
"peerDependenciesMeta": {
"webpack": {
"optional": true
}
},
"devDependencies": {
"@types/babel__core": "^7.20.5",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"jest": "^29.7.0",
"ts-jest": "^29.1.4",
"tsup": "^8.0.2",
"typescript": "^4.9.5"
}
}