-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.53 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
{
"name": "@carry0987/imgcheckbox",
"version": "3.1.1",
"description": "A library for create checkable img tags",
"type": "module",
"main": "dist/imgCheckBox.min.js",
"module": "dist/imgCheckBox.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"umd": "./dist/imgCheckBox.min.js",
"import": "./dist/imgCheckBox.esm.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"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/ImgCheckBox-JS.git"
},
"keywords": [
"checkbox",
"imgcheckbox"
],
"author": "carry0987",
"license": "MIT",
"bugs": {
"url": "https://github.com/carry0987/ImgCheckBox-JS/issues"
},
"homepage": "https://github.com/carry0987/ImgCheckBox-JS#readme",
"devDependencies": {
"@carry0987/event-emitter": "^1.4.7",
"@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",
"happy-dom": "^15.7.4",
"prettier": "^3.3.3",
"rollup": "^4.24.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-tsconfig-paths": "^1.5.2",
"tslib": "^2.8.0",
"vitest": "^2.1.3"
}
}