-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.61 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.61 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
{
"name": "pine-script-compiler",
"version": "1.0.0",
"description": "A local Pine Script compiler for syntax and semantic analysis",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"pine-compiler": "bin/pine-compiler.js",
"psc": "bin/pine-compiler.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write .",
"type-check": "tsc --noEmit",
"start": "node bin/pine-compiler.js",
"compile": "npm run build && node bin/pine-compiler.js",
"check": "npm run lint && npm run type-check && npm test && npm run build"
},
"keywords": [
"pine-script",
"compiler",
"syntax-analysis",
"trading",
"cli"
],
"author": "Pine Script Developer",
"license": "MIT",
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"esbuild": "^0.19.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-security": "^1.7.1",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"prettier": "^3.1.0"
},
"dependencies": {
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"cli-table3": "^0.6.5",
"commander": "^11.1.0",
"glob": "^10.3.10"
}
}