-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 922 Bytes
/
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
{
"name": "l2",
"version": "0.0.0",
"keywords": [
"l2"
],
"repository": "Thomas Rijsewijk/l2",
"license": "MIT",
"author": "Thomas Rijsewijk <[email protected]>",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"browser": "./dist/l2.js",
"import": "./dist/l2.js",
"require": "./dist/l2.cjs.js",
"umd": "./dist/l2.umd.js"
},
"./": "./",
"./package.json": "./package.json"
},
"main": "dist/l2.cjs.js",
"unpkg": "dist/l2.js",
"module": "dist/l2.js",
"source": "src/l2.ts",
"browser": "dist/l2.umd.js",
"types": "dist/l2.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "klap build",
"prepublishOnly": "klap build",
"start": "klap start",
"watch": "klap watch"
},
"devDependencies": {
"klap": "^6.1.5",
"typescript": "^4.2.4"
},
"klap": {
"example": "public/index.ts"
}
}