-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.06 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
{
"name": "refable-light",
"displayName": "Refable Light",
"version": "1.0.0",
"description": "Super simple JS controller.",
"keywords": [
"html",
"controller"
],
"repository": {
"type": "git",
"url": "https://github.com/ecmel/refable-light.git"
},
"author": {
"name": "Ecmel Ercan",
"url": "https://ecmel.dev/"
},
"license": "MIT",
"files": [
"dist"
],
"type": "module",
"main": "./dist/refable.cjs",
"module": "./dist/refable.mjs",
"types": "./dist/refable.d.ts",
"scripts": {
"clean": "git clean -Xdf",
"prereset": "npm run clean",
"reset": "npm install",
"update": "npx npm-check-updates -u -x prettier",
"format": "prettier --ignore-path .gitignore -w --list-different .",
"build": "rollup -c --forceExit",
"prepack": "npm run build"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"prettier": "^2.8.8",
"rollup": "^4.9.6",
"rollup-plugin-cleandir": "^2.0.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
}
}