-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
51 lines (51 loc) · 1.44 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
44
45
46
47
48
49
50
51
{
"name": "wglt",
"version": "0.6.4",
"description": "WebGL Terminal",
"repository": {
"type": "git",
"url": "https://github.com/codyebberson/wglt"
},
"license": "MIT",
"author": "Cody Ebberson <[email protected]>",
"sideEffects": false,
"type": "module",
"exports": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.mjs"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.cjs"
}
},
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"types": "dist/esm/index.d.ts",
"files": ["dist/cjs", "dist/esm"],
"scripts": {
"api-extractor": "api-extractor run --local && cp dist/types.d.ts dist/cjs/index.d.ts && cp dist/types.d.ts dist/esm/index.d.ts",
"build": "npm run build:lib && npm run build:types && npm run build:site",
"build:lib": "node esbuild.mjs",
"build:site": "vite build",
"build:types": "tsc --project tsconfig.build.json && npm run api-extractor",
"dev": "vite",
"fix": "biome lint --apply .",
"lint": "biome lint .",
"test": "vitest --run"
},
"browserslist": ["last 1 Chrome versions"],
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@microsoft/api-extractor": "7.43.2",
"c8": "9.1.0",
"esbuild": "0.21.1",
"glob": "10.3.12",
"ts-node": "10.9.2",
"tslib": "2.6.2",
"typescript": "5.4.5",
"vite": "5.2.11",
"vitest": "1.6.0"
}
}