-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 790 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 790 Bytes
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
{
"name": "vlq",
"description": "Generate, and decode, base64 VLQ mappings for source maps and other uses",
"author": "Rich Harris",
"repository": "https://github.com/Rich-Harris/vlq",
"license": "MIT",
"version": "2.0.4",
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./src/index.js",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "src/index.js",
"types": "types/index.d.ts",
"files": [
"src",
"dist",
"types"
],
"devDependencies": {
"rollup": "^2.58.0",
"typescript": "^4.4.4"
},
"scripts": {
"build": "rm -rf dist && rollup -c && tsc",
"test": "node test",
"prepublishOnly": "npm test && npm run build"
},
"keywords": [
"sourcemap",
"sourcemaps",
"base64",
"vlq"
]
}