-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
42 lines (42 loc) · 1.24 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
{
"name": "measurejs",
"version": "2.1.0",
"description": "Measure the distance between elements in a web page",
"main": "./src/index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/weijian-zhu/measure.js.git"
},
"bugs": {
"url": "https://github.com/weijian-zhu/measure.js/issues"
},
"homepage": "https://github.com/weijian-zhu/measure.js#measure-js",
"author": "weijian zhu",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --mode production",
"dev": "cross-env NODE_ENV=development webpack --watch --mode development",
"format": "prettier --write '**/*.{ts,tsx,js,jsx,json,md}'",
"ext": "node extensions.config.js"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@types/webpack-env": "^1.16.3",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"eslint": "^8.4.0",
"mini-css-extract-plugin": "^2.4.5",
"prettier": "^2.5.1",
"typescript": "^4.5.2",
"webpack": "^5.59.0",
"webpack-cli": "^4.9.1"
},
"unpkg": "dist/bundle.js",
"jsdelivr": "dist/bundle.js",
"dependencies": {
"tinycolor2": "^1.4.2"
}
}