-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.16 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
{
"name": "@mluaka/multiselect",
"version": "1.2.0",
"description": "A lightweight JavaScript utility for enabling multi-selection functionality.",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "dist/mjs/index.d.ts",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/mjs/index.d.ts"
}
},
"scripts": {
"build": "rm -fr dist/* && tsc -p ./configs/tsconfig.json && tsc -p ./configs/tsconfig.cjs.json && bash ./fixup",
"test": "jest",
"prepack": "npm run build",
"semantic-release": "semantic-release"
},
"files": [
"dist/"
],
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/jest": "^29.5.12",
"chai": "^4.3.8",
"jest": "^29.7.0",
"semantic-release": "^22.0.5",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"release": {
"branches": [
"master"
]
},
"repository": {
"type": "git",
"url": "https://github.com/marrionluaka/multiselect.git"
},
"publishConfig": {
"access": "public"
}
}