-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.32 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.32 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
{
"name": "@kittl/little-cms",
"version": "1.0.3",
"description": "",
"keywords": [],
"author": "",
"license": "MIT",
"type": "module",
"main": "dist/littleCms.browser.js",
"types": "dist/littleCms.d.ts",
"exports": {
".": {
"types": "./dist/littleCms.d.ts",
"browser": "./dist/littleCms.browser.js",
"node": "./dist/littleCms.node.js",
"import": "./dist/littleCms.browser.js",
"default": "./dist/littleCms.browser.js"
},
"./formatter": "./dist/formatter.js",
"./flags": "./dist/flags.js",
"./formats": "./dist/formats.js"
},
"files": [
"dist"
],
"scripts": {
"build": "pnpm run build:ts && pnpm run build:wasm && pnpm run build:entries",
"build:ts": "tsc",
"build:wasm": "BUILD=release make clean && BUILD=release make variants",
"build:entries": "node scripts/build-entry-variants.mjs",
"prepublishOnly": "pnpm run build",
"build:dev": "pnpm run build:ts && make clean && make",
"lint": "biome lint .",
"format": "biome format . --write",
"check": "biome check .",
"test": "vitest",
"test:run": "vitest run",
"test:watch": "vitest watch"
},
"packageManager": "pnpm@10.11.0",
"devDependencies": {
"@biomejs/biome": "^2.4.5",
"@types/node": "^25.3.3",
"vitest": "^4.0.18",
"typescript": "^5.9.3"
}
}