forked from ev3-team/adapters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.13 KB
/
package.json
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
{
"name": "@ev3-team/adapters",
"version": "0.3.55",
"description": "",
"private": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"lint": "tsc",
"build": "tsx scripts/assert-unique-ids.ts && tsup index.ts --format cjs,esm --dts",
"ci": "pnpm run lint && pnpm run build",
"release": "pnpm run lint && pnpm run build && changeset publish",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"update:investors": "tsx scripts/update-investors.ts && npm run format",
"update:projects": "tsx scripts/update-projects.ts && npm run format",
"update:projects-investors": "tsx scripts/update-projects-investors.ts && npm run format",
"generate:project-id": "tsx scripts/generate-project-id.ts",
"generate:investor-id": "tsx scripts/generate-investor-id.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/node": "^20.7.1",
"dotenv": "^16.3.1",
"fast-csv": "^4.3.6",
"nanoid": "^5.0.1",
"tsup": "^7.2.0",
"tsx": "^4.7.3",
"typescript": "^5.2.2"
}
}