-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.22 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": "denier",
"description": "Denier is a tiny library for building web frontend stuff",
"author": {
"name": "Erik Agsjö"
},
"license": "MIT",
"version": "0.2.3",
"source": "src/index.ts",
"main": "lib/index.js",
"module": "lib/module.js",
"types": "lib/types.d.ts",
"files": [
"lib"
],
"scripts": {
"start": "parcel serve --no-cache example/index.html",
"bench": "parcel serve --no-cache benchmark/index.html",
"build": "parcel build --no-cache",
"test": "cd tests && npm run test",
"prepack": "npm run build"
},
"devDependencies": {
"@parcel/packager-ts": "^2.9.3",
"@parcel/transformer-typescript-types": "^2.9.3",
"csstype": "^3.1.2",
"parcel": "^2.9.3",
"typescript": "^5.2.2"
},
"targets": {
"main": {},
"module": {},
"module-prod": {
"context": "browser",
"isLibrary": true,
"optimize": true,
"outputFormat": "esmodule",
"distDir": "dist",
"source": "src/index.ts"
},
"cdn": {
"context": "browser",
"optimize": true,
"outputFormat": "global",
"includeNodeModules": false,
"sourceMap": false,
"distDir": "dist",
"source": "src/windowglobal.ts"
}
}
}