-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
67 lines (67 loc) · 2.22 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "svg-to-excalidraw",
"version": "0.0.2",
"description": "Convert SVG to Excalidraw’s file format",
"main": "dist/bundle.js",
"files": [
"dist/bundle.js",
"svg-to-excalidraw.d.ts"
],
"types": "svg-to-excalidraw.d.ts",
"scripts": {
"build": "yarn clean && webpack --config webpack.config.js",
"build:watch": "yarn clean && webpack --config webpack.config.js --watch",
"clean": "rimraf dist",
"fix": "yarn fix:other && yarn fix:code",
"fix:code": "yarn test:code -- --fix",
"fix:other": "yarn prettier -- --write",
"lint:check": "eslint .",
"lint:write": "eslint . --fix",
"prettier": "prettier \"**/*.{css,scss,json,md,html,yml}\" --ignore-path=.eslintignore",
"test": "yarn test:typecheck && yarn test:code && yarn test:other",
"test:code": "eslint --max-warnings=0 --ignore-path .gitignore --ext .js,.ts,.tsx .",
"test:other": "yarn prettier -- --list-different",
"test:typecheck": "tsc"
},
"prettier": "@excalidraw/prettier-config",
"contributors": [
"Nicolas Goudry <[email protected]>",
"Broch Stilley <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "7.15.5",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/plugin-proposal-object-rest-spread": "7.14.7",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/preset-env": "7.15.4",
"@babel/preset-typescript": "7.15.0",
"@excalidraw/eslint-config": "1.0.1",
"@excalidraw/prettier-config": "1.0.2",
"@types/chroma-js": "^2.1.3",
"@typescript-eslint/eslint-plugin": "4.31.0",
"@typescript-eslint/parser": "4.31.0",
"babel-loader": "^8.2.2",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"lint-staged": "11.1.2",
"prettier": "2.3.2",
"typescript": "4.4.2",
"webpack": "5.52.0",
"webpack-cli": "4.8.0"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"dependencies": {
"chroma-js": "^2.1.2",
"gl-matrix": "^3.3.0",
"nanoid": "^3.1.25",
"path-data-parser": "^0.1.0",
"points-on-curve": "^0.2.0",
"points-on-path": "^0.2.1",
"roughjs": "^4.4.1"
}
}