-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.65 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
35
36
37
38
39
40
41
42
43
{
"name": "@aninix-inc/figma-binding",
"author": "Aninix Inc.",
"repository": "https://github.com/aninix-inc/figma-binding.git",
"// this version would be auto set to proper one on the release trigger in github": true,
"version": "0.0.0",
"main": "index.js",
"module": "index.esm.js",
"types": "index.d.ts",
"scripts": {
"prebuild": "rm -rf ./dist",
"build:declaration": "tsc --project tsconfig.build.json --emitDeclarationOnly",
"build:docs": "cp ./package.json ./dist && cp ./README.md ./dist && cp ./LICENSE.md ./dist",
"build": "bun run build:declaration && bun run build:docs && bun ./source.build.ts",
"build:dev": "bun run build:declaration && bun run build:docs && bun ./source.build.ts",
"build:plugin": "bun ./plugin.build.ts",
"dev:plugin": "bun --watch ./plugin.build.ts",
"generate:types": "bun ./scripts/generate-types-from-json-schema.ts && prettier ./src/types.d.ts --write",
"test": "bun test",
"test:coverage": "bun test --coverage",
"test:watch": "bun test --watch",
"check:lint": "bunx @biomejs/biome lint ./src --diagnostic-level=error",
"check:lint:dev": "bunx @biomejs/biome lint ./src",
"check:format": "prettier ./src --check",
"check:types": "tsc --noEmit",
"check:unused": "knip"
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@figma/plugin-typings": "^1.93.0",
"@types/bun": "^1.0.5",
"esbuild": "^0.24.0",
"json-schema-to-typescript": "^15.0.0",
"knip": "^5.0.1",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^4.0.0",
"typescript": "^5.3.3"
},
"peerDependencies": {},
"dependencies": {
"mathjs": "^12.4.3"
}
}