-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.67 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.67 KB
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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@techdivision/appsheet",
"version": "3.5.0",
"description": "Generic TypeScript library for AppSheet CRUD operations",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"appsheet": "./dist/cli/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"docs": "typedoc",
"docs:serve": "typedoc && npx http-server docs/api -o",
"prepare": "npm run build",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major",
"version:prerelease": "npm version prerelease --preid=beta",
"release": "npm test && npm run lint && npm run build && git push --follow-tags"
},
"keywords": [
"appsheet",
"api",
"crud",
"typescript",
"mcp"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.0.0",
"ts-semver-detector": "^0.3.1",
"typedoc": "^0.28.14",
"typescript": "^5.0.0"
},
"dependencies": {
"@types/uuid": "^10.0.0",
"axios": "^1.6.0",
"commander": "^11.0.0",
"uuid": "^13.0.0",
"yaml": "^2.3.0"
},
"optionalDependencies": {
"inquirer": "^9.0.0"
}
}