-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.75 KB
/
package.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": "@jup-ag/platform-list",
"version": "1.2.93",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/jup-ag/platform-list.git"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./platforms/*": {
"import": "./dist/platforms/*.js",
"require": "./dist/platforms/*.js",
"types": "./dist/platforms/*.d.ts"
}
},
"typesVersions": {
"*": {
"platforms/*": [
"./dist/platforms/*"
]
}
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prebuild": "npm run build:index",
"build": "npm run build:lib",
"build:ci": "npm run build:lib && npm run build:json",
"build:lib": "tsc",
"build:json": "ts-node scripts/generate-json.ts",
"build:index": "ts-node scripts/generate-imports.ts",
"commit:index": "npm run build:index && git add ./src/platforms/index.ts && git commit -m \"chore: generate updates\"",
"pretest": "npm run build:index",
"test": "jest",
"test:ci": "jest",
"test:watch": "jest --watch",
"lint": "prettier --check . && tsc --noEmit",
"format": "prettier --write .",
"preversion": "npm run build:index && npm run test:ci && npm run build:ci && npm run format && (npm run commit:index || true)"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"globals": "^16.0.0",
"jest": "^29.7.0",
"prettier": "3.5.3",
"sharp": "^0.34.5",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"zod": "^3.24.2"
},
"peerDependencies": {
"@sonarwatch/portfolio-core": "^0.16.44"
}
}