-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.35 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.35 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@metapages/dataref",
"version": "2.1.2",
"author": "Dion Whitehead <dion@metapage.io>",
"repository": {
"type": "git",
"url": "git+https://github.com/metapages/dataref.git"
},
"keywords": [
"dataref",
"data-url",
"dataurl",
"base64",
"typed-array",
"arraybuffer",
"binary",
"encode",
"decode",
"url-encoding",
"json",
"serialization"
],
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"!src/test"
],
"browser": "dist/index.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"homepage": "https://github.com/metapages/dataref/tree/main/docs#readme",
"scripts": {
"note": "echo 'use just. See README.md'",
"test": "vitest --run",
"dev": "vitest",
"build": "vite build"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.1",
"@types/node": "^20.10.0",
"rollup-plugin-typescript-paths": "^1.5.0",
"tslib": "^2.8.1",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-plugin-dts": "^4.3.0",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.1"
},
"dependencies": {
"base64-arraybuffer": "^1.0.2",
"mutative": "^1.3.0"
}
}