-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.41 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
{
"name": "typescript-utils-study",
"type": "module",
"version": "1.0.0",
"description": "",
"source": "src/index.ts",
"main": "./dist/index.js",
"module": "./dist/index.es.m.js",
"unpkg": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"scripts": {
"start": "pnpm run dev",
"dev": "microbundle watch",
"build": "microbundle",
"test": "jest --coverage",
"api": "pnpm run build && typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FontEndArt/typescript-utils-study.git"
},
"files": [
"dist"
],
"keywords": [],
"author": "wuhaoran <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/FontEndArt/typescript-utils-study/issues"
},
"homepage": "https://github.com/FontEndArt/typescript-utils-study#readme",
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.13",
"babel-jest": "^27.5.1",
"jest": "^27.5.1",
"microbundle": "^0.14.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"scripty": "^2.0.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"typedoc": "^0.22.12",
"typescript": "^4.5.5"
}
}