-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 850 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 850 Bytes
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
{
"name": "@team-kamo/ts-poc",
"version": "0.0.10",
"description": "Octane client library, written with TypeScript.",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "pnpm build && pnpm postbuild",
"postbuild": "cp package.json dist && cd dist && npm i --omit dev",
"prettier": "prettier src/* --write",
"lint": "eslint src/*/*.ts src/models/*.ts src/*.ts"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/team-kamo"
},
"keywords": [],
"author": "Team-Kamo",
"type": "module",
"dependencies": {
"json-parse-bigint": "^1.0.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.23.0",
"prettier": "^2.7.1",
"typescript": "^4.8.2"
}
}