-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.79 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.79 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
65
66
{
"name": "@ragarwal06/sap-cloud-application-generator-types",
"version": "0.1.4",
"description": "Boilerplate types for creating full stack applications",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/ragarwalll/sap-cloud-application-generator-types.git"
},
"keywords": [
"boilerplate",
"create-sap-app",
"create-sap-cloud-application",
"ui5",
"spring-boot",
"nodejs",
"reactjs",
"types",
"cf"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"sideEffects": false,
"engines": {
"node": ">=14.19"
},
"scripts": {
"clean": "rimraf dist .turbo",
"typecheck": "tsc --noEmit",
"build": "npm run clean && tsup",
"lint": "eslint src/** --report-unused-disable-directives",
"lint:fix": "npm run lint --fix",
"format": "prettier --write \"src/**/*.{cjs,mjs,ts,tsx,md,json}\"",
"format:check": "prettier --check \"src/**/*.{cjs,mjs,ts,tsx,md,json}\"",
"beta": "npm run build && npm publish --tag beta --access public",
"release": "npm run build && npm publish --access public"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-config-turbo": "^2.4.4",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-isaacscript": "^4.0.0",
"eslint-plugin-prettier": "^5.2.3",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"tsup": "^8.4.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@types/node": "^24.0.10"
}
}