-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) 路 1.75 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) 路 1.75 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": "@se-oss/ta",
"version": "0.0.0",
"description": "Javascript library for technical analysis for financial charts.",
"keywords": [
"technical",
"analysis",
"ta",
"indicators",
"trading",
"chart"
],
"homepage": "https://github.com/shahradelahi/technical-analysis#readme",
"repository": "github:shahradelahi/technical-analysis",
"license": "MIT",
"author": "Shahrad Elahi <shahrad@litehex.com> (https://github.com/shahradelahi)",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**"
],
"scripts": {
"build": "tsup && tsup --dts-only --format esm",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "pnpm typecheck && eslint .",
"lint:fix": "eslint --fix .",
"prepublishOnly": "pnpm test && pnpm lint && pnpm format:check && pnpm build",
"test": "mocha \"**/*.test.ts\"",
"typecheck": "tsc --noEmit"
},
"prettier": "@shahrad/prettier-config",
"dependencies": {
"@se-oss/circular-buffer": "^1.0.2",
"mathjs": "^14.4.0"
},
"devDependencies": {
"@debut/indicators": "^1.3.22",
"@shahrad/eslint-config": "^1.0.0",
"@shahrad/prettier-config": "^1.2.2",
"@sindresorhus/tsconfig": "^7.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^22.13.13",
"eslint": "^10.0.0",
"globals": "^16.0.0",
"mocha": "^11.1.0",
"prettier": "^3.5.3",
"tinybench": "^4.0.1",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"packageManager": "pnpm@9.15.9",
"publishConfig": {
"access": "public",
"provenance": true
}
}