-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.25 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": "@ironbay/anchor",
"version": "0.0.64",
"license": "MIT",
"module": "dist/esm/index.js",
"main": "dist/cjs/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"bin": {
"anchor": "dist/cjs/cli.js"
},
"scripts": {
"build": "tsc --build tsconfig.esm.json && tsc --build tsconfig.cjs.json",
"watch": "tsc -w",
"release": "yarn build && yarn publish"
},
"sideEffects": false,
"files": [
"dist"
],
"devDependencies": {
"@tsconfig/node14": "^1.0.1",
"@types/aws-lambda": "^8.10.81",
"@types/commander": "^2.12.2",
"@types/jest": "^27.0.1",
"@types/jsonschema": "^1.1.1",
"@types/node": "^14.14.28",
"jest": "^27.0.6",
"ts-jest": "^27.0.4",
"ts-node": "^10.2.0",
"typescript": "^4.2.4"
},
"dependencies": {
"@types/prettier": "^2.3.2",
"ajv": "^8.6.2",
"ajv-formats": "^2.1.0",
"chalk": "^4.1.2",
"commander": "^7.1.0",
"json-schema-to-ts": "^1.6.4",
"jsonschema": "^1.4.0",
"pascal-case": "^3.1.2",
"prettier": "^2.3.2",
"ts-morph": "^9.1.0"
},
"repository": "https://github.com/ironbay/anchor",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}