-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.26 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.26 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
{
"name": "thread",
"files": ["dist"],
"version": "1.0.0",
"description": "Web dynamic thread encapsulation",
"main": "dist/thread.umd.js",
"module": "dist/thread.es.js",
"source": "src/index.ts",
"typings": "types/index.d.ts",
"exports": {
".": {
"import": "./dist/thread.es.js",
"require": "./dist/thread.umd.js"
}
},
"scripts": {
"prepare": "husky install",
"commit-msg": "husky add .husky/commit-msg 'npx --no-install commitlint --edit `$1`'",
"commit": "git cz",
"tsc": "tsc",
"serve": "vite --host 0.0.0.0",
"build": "tsc && vite build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cgxqd/Thread.git"
},
"keywords": [
"worker",
"thread"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cgxqd/Thread/issues"
},
"homepage": "https://github.com/cgxqd/Thread#readme",
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@types/node": "^17.0.16",
"commitizen": "^4.2.4",
"husky": "^7.0.4",
"ts-node": "^10.5.0",
"typescript": "^4.5.5",
"vite": "^2.8.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}