-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.43 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.43 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
{
"name": "pinets-cli",
"version": "0.1.11",
"description": "A CLI wrapper for PineTS that lets you run Pine Script indicators directly from the command line.",
"keywords": [
"Pine",
"Script",
"PineTS",
"Indicators",
"Finance",
"Quant",
"Trading",
"Backtesting",
"CLI"
],
"homepage": "https://github.com/QuantForgeOrg/pinets-cli#readme",
"bugs": {
"url": "https://github.com/QuantForgeOrg/pinets-cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/QuantForgeOrg/pinets-cli.git"
},
"license": "AGPL-3.0-or-later",
"author": "Alaa-eddine KADDOURI",
"type": "module",
"bin": {
"pinets": "./dist/pinets-cli.min.cjs",
"pinets-cli": "./dist/pinets-cli.min.cjs"
},
"files": [
"dist/pinets-cli.min.cjs",
"README.md",
"LICENSE"
],
"scripts": {
"build": "cross-env BUILD=prod rollup -c",
"build:dev": "cross-env BUILD=dev rollup -c",
"build:prod": "cross-env BUILD=prod rollup -c",
"prepublishOnly": "npm run build:prod",
"clean": "rimraf dist"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"commander": "^14.0.3",
"cross-env": "^10.1.0",
"esbuild": "^0.25.0",
"pinets": "^0.9.2",
"rimraf": "^6.0.0",
"rollup": "^4.30.0",
"rollup-plugin-esbuild": "^6.2.0",
"typescript": "^5.7.0"
}
}