-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
29 lines (29 loc) · 1.03 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
{
"name": "buffer-backed-object",
"version": "1.0.1",
"description": "",
"repository": "github:GoogleChromeLabs/buffer-backed-object",
"homepage": "https://github.com/GoogleChromeLabs/buffer-backed-object#readme",
"source": "buffer-backed-object.js",
"module": "dist/buffer-backed-object.modern.js",
"main": "dist/buffer-backed-object.umd.js",
"types": "dist/buffer-backed-object.d.ts",
"scripts": {
"build": "mkdir -p dist && run-s build:bundle build:types",
"build:bundle": "vite build",
"build:types": "tsc --emitDeclarationOnly -d --outFile dist/buffer-backed-object.d.ts buffer-backed-object.ts",
"test": "run-p test:*",
"test:unit": "vitest run --coverage",
"test:types": "tsc --noEmit buffer-backed-object.type-test.ts"
},
"author": "Surma <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@vitest/coverage-c8": "^0.26.3",
"conditional-type-checks": "^1.0.6",
"npm-run-all": "^4.1.5",
"typescript": "^4.9.4",
"vite": "^4.0.4",
"vitest": "^0.26.3"
}
}