forked from AshleyScirra/via.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.51 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
{
"version": "1.0.3",
"description": "via.js",
"name": "via.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./controller": {
"import": "./dist/controller/index.js",
"types": "./dist/controller/index.d.ts"
},
"./receiver": {
"import": "./dist/receiver/index.js",
"types": "./dist/receiver/index.d.ts"
}
},
"//typesVersions": {
"*": {
".": [
"./dist/index.d.ts"
],
"./controller": [
"./dist/controller/index.d.ts"
],
"./receiver": [
"./dist/receiver/index.d.ts"
]
}
},
"scripts": {
"git": "git add . && git commit -m \"Bump version\" && git push",
"bump": "pnpm version patch",
"npmjs": "pnpm publish",
"release": "run-s -c git bump npmjs",
"declaration": "tsc --declaration --emitDeclarationOnly --declarationMap",
"declaration:watch": "tsc --declaration --emitDeclarationOnly --declarationMap--watch",
"preinstall": "npx only-allow pnpm",
"build": "tsc",
"watch": "tsc --watch",
"serve": "webpack serve"
},
"dependencies": {
},
"devDependencies": {
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-plugin-clean": "^1.0.0"
}
}