generated from alinnert/npm-ts-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 979 Bytes
/
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
{
"name": "@alinnert/reactive",
"version": "1.0.2",
"files": [
"dist"
],
"main": "./dist/main.cjs.js",
"module": "./dist/main.esm.js",
"exports": {
".": {
"types": "./dist/main.d.ts",
"require": "./dist/main.cjs.js",
"import": "./dist/main.esm.js"
}
},
"types": "dist/main.d.ts",
"scripts": {
"test": "jest",
"build": "tsc --emitDeclarationOnly && node scripts/build.js",
"preversion": "npm test",
"version": "npm run build",
"postversion": "git push && git push --tags",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "^29.5.2",
"babel-jest": "^29.5.0",
"esbuild": "^0.24.0",
"jest": "^29.5.0",
"typescript": "^5.1.3",
"vitepress": "^1.0.0-beta.2"
}
}