-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 999 Bytes
/
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
{
"name": "vite-plugin-setting-css-module",
"version": "1.1.3",
"author": "programBoy",
"license": "MIT",
"types": "lib/types/index.d.ts",
"main": "lib/index.js",
"module": "lib/index.mjs",
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.js"
}
},
"homepage": "https://github.com/ProgrameBoy/vite-plugin-setting-css-module",
"repository": {
"type": "git",
"url": "git+https://github.com/ProgrameBoy/vite-plugin-setting-css-module.git"
},
"directories": {
"lib": "lib"
},
"files": [
"lib",
"package.json",
"README.md",
"README.en.md"
],
"keywords": [
"vite",
"vite-plugin",
"react",
"css",
"css-module",
"vite-plugin-setting-css-module"
],
"scripts": {
"clean": "tsToJs clean",
"build:js": "tsToJs build",
"build": "yarn clean && yarn build:js"
},
"devDependencies": {
"@wz-libs/ts-to-js": "^1.1.0"
}
}