-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.39 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
52
{
"name": "jobserve.js",
"title": "Observe.js",
"description": "A lightweight JavaScript library that allows developers to keep track of changes to JavaScript objects and/or DOM elements.",
"version": "1.1.0",
"homepage": "https://www.william-troup.com/observe-js/",
"author": {
"name": "Bunoon"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/williamtroup/Observe.js"
},
"keywords": [
"typescript",
"javascript",
"css",
"observe.js",
"observe",
"observable",
"watcher",
"object",
"changes",
"watch",
"event",
"events",
"trigger",
"triggers",
"handler"
],
"bugs": {
"url": "https://github.com/williamtroup/Observe.js/issues"
},
"main": "dist/observe.js",
"types": "dist/observe.d.ts",
"scripts": {
"build-all": "npm run build && npm run build-minimized",
"build": "tsup --config tsup.build.config.ts && tsup --config tsup.build.esm.config.ts",
"build-minimized": "tsup --config tsup.build.min.config.ts",
"build-typescript": "tsup --config tsup.build.config.ts",
"build-typescript-esm": "tsup --config tsup.build.esm.config.ts",
"build-typescript-minimized": "tsup --config tsup.build.min.config.ts"
},
"devDependencies": {
"@swc/core": "^1.7.26",
"sass": "^1.78.0",
"terser": "^5.32.0",
"tsup": "^8.2.4",
"typescript": "^5.6.2"
}
}