-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.39 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.39 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
{
"name": "netsuite-ts-sdf-template",
"displayName": "NetSuite TypeScript SDF Project Template",
"version": "2.0.1",
"private": true,
"description": "A high-integrity foundation for TypeScript-based SuiteScript 2.1 development and deployment via SDF.",
"keywords": [
"netsuite",
"sdf",
"suitescript",
"typescript",
"dx",
"engineering"
],
"author": {
"name": "Matt Plant",
"url": "https://github.com/mattplant"
},
"repository": {
"type": "git",
"url": "https://github.com/mattplant/netsuite-ts-sdf-template"
},
"license": "MIT",
"engines": {
"node": ">=22.0.0",
"yarn": ">=1.22.0"
},
"packageManager": "yarn@1.22.22",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,js,json,xml}\"",
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"suitecloud": "suitecloud",
"setup": "suitecloud account:setup",
"deploy": "yarn build && suitecloud project:deploy"
},
"devDependencies": {
"@hitc/netsuite-types": "^2025.1.0",
"@oracle/suitecloud-cli": "^3.1.2",
"@oracle/suitecloud-unit-testing": "^1.7.0",
"@prettier/plugin-xml": "^3.4.2",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.0.0",
"jest": "^29.7.0",
"prettier": "^3.8.1",
"typescript": "^5.4.0",
"typescript-eslint": "^8.0.0"
}
}