-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 990 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 990 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
{
"name": "@squaresapp/rawjs",
"author": "Paul Gordon",
"description": "Better document.createElement(). So much better, that you may no longer need React / Vue / Svelte.",
"version": "1.3.19",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/squaresapp/rawjs"
},
"bugs": {
"url": "https://github.com/squaresapp/rawjs/issues"
},
"main": "raw.js",
"browser": "raw.js",
"module": "raw.esm.js",
"types": "raw.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"LICENSE.txt",
"readme.md",
"readme-poster.png",
"raw.js",
"raw.min.js",
"raw.d.ts",
"raw.d.ts.map",
"raw.esm.js"
],
"scripts": {
"test": "exit 0",
"esm": "sed 's/\\/\\/+ //' ./+build/raw.js > ./+build/raw.esm.js",
"bundle": "tsc -p tsconfig.release.json && terser ./+build/raw.js > ./+build/raw.min.js && npm run esm",
"release": "npm run bundle && cd ./+build && cp ../package.json ./package.json && np && cp ./package.json ../package.json"
}
}