-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
36 lines (36 loc) · 888 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
{
"name": "@covector/apply",
"version": "0.10.0",
"license": "Apache-2.0",
"homepage": "https://github.com/jbolda/covector#readme",
"author": "Jacob Bolda <[email protected]> (https://www.jacobbolda.com/)",
"repository": {
"type": "git",
"url": "https://github.com/jbolda/covector.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"development": "./src/index.ts",
"default": "./dist/index.js"
},
"scripts": {
"build": "tsc -b",
"clean": "rimraf dist tsconfig.tsbuildinfo node_modules",
"prepublishOnly": "tsc -b",
"test": "vitest"
},
"dependencies": {
"@covector/files": "0.8.0",
"effection": "^2.0.6",
"semver": "^7.5.4"
},
"devDependencies": {
"@covector/types": "0.0.0",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"volta": {
"extends": "../../package.json"
}
}