-
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.76 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.76 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": "kwant",
"version": "3.0.0",
"description": "React canvas charts for candlesticks, numeric lines, and PnL.",
"license": "MIT",
"type": "module",
"homepage": "https://www.npmjs.com/package/kwant",
"repository": {
"type": "git",
"url": "git+https://github.com/0xNoSystem/Charting-Engine.git"
},
"bugs": {
"url": "https://github.com/0xNoSystem/Charting-Engine/issues"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"style": "./dist/styles.css",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./line": {
"types": "./dist/line.d.ts",
"import": "./dist/line.mjs",
"require": "./dist/line.cjs"
},
"./styles.css": "./dist/styles.css",
"./line.css": "./dist/line.css"
},
"files": [
"dist",
"MIGRATION.md",
"CHANGELOG.md"
],
"sideEffects": [
"./dist/styles.css",
"./dist/line.css"
],
"scripts": {
"build:css": "mkdir -p dist && cp ./src/index.css ./dist/styles.css && cp ./src/line.css ./dist/line.css",
"build": "tsup && npm run build:css",
"lint": "tsc --noEmit",
"test:build": "tsup --config tsup.test.config.ts",
"test": "npm run test:build && node --test tests/core.test.cjs tests/components.test.cjs",
"test:package": "npm run build && node --test tests/package-smoke.test.mjs",
"dev": "tsup --watch",
"clean": "rm -rf dist",
"prepare": "npm run build"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"tsup": "^8.0.1",
"typescript": "^5.4.0"
},
"engines": {
"node": ">=18"
}
}