-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
43 lines (43 loc) · 984 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
{
"name": "@bramus/style-observer",
"version": "1.3.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"demo": "concurrently \"npm:start\" \"npm:serve\"",
"serve": "http-server -o /demo/",
"start": "tsdx watch",
"build": "tsdx build",
"lint": "tsdx lint src",
"format": "tsdx lint src --fix",
"prepublish": "npm run build"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"author": "Bramus",
"module": "dist/style-observer.esm.js",
"devDependencies": {
"concurrently": "^8.2.2",
"http-server": "^14.1.1",
"husky": "^9.1.5",
"tsdx": "^0.14.1",
"tslib": "^2.7.0",
"typescript": "^5.5.4"
},
"bugs": {
"url": "https://github.com/bramus/style-observer/issues"
},
"homepage": "https://github.com/bramus/style-observer"
}