-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.68 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.68 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": "@carry0987/switch-box",
"version": "2.1.2",
"description": "A library for create switcher via checkbox",
"type": "module",
"main": "dist/switchBox.min.js",
"module": "dist/switchBox.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"umd": "./dist/switchBox.min.js",
"import": "./dist/switchBox.esm.js",
"types": "./dist/index.d.ts"
},
"./theme/switchBox.min.css": "./dist/theme/switchBox.min.css"
},
"scripts": {
"format": "prettier --write \"src/**/*.{ts,scss}\" \"test/**/*.{ts,tsx,scss}\"",
"start": "rollup --config rollup.config.ts --configPlugin typescript",
"build": "rollup --config rollup.config.ts --configPlugin typescript --environment BUILD:production",
"test": "vitest run"
},
"files": [
"dist/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/carry0987/SwitchBox-JS.git"
},
"keywords": [
"switch",
"checkbox"
],
"author": "carry0987",
"license": "MIT",
"bugs": {
"url": "https://github.com/carry0987/SwitchBox-JS/issues"
},
"homepage": "https://github.com/carry0987/SwitchBox-JS#readme",
"devDependencies": {
"@carry0987/utils": "^3.8.2",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@testing-library/preact": "^3.2.4",
"happy-dom": "^15.7.4",
"preact": "^10.24.3",
"prettier": "^3.3.3",
"rollup": "^4.24.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-tsconfig-paths": "^1.5.2",
"sass": "^1.80.3",
"tslib": "^2.8.0",
"vitest": "^2.1.3"
}
}