-
-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathpackage.json
47 lines (47 loc) · 1.18 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
{
"name": "atrament",
"version": "4.6.0",
"description": "Tiny JS library for beautiful drawing and handwriting on the HTML Canvas",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"scripts": {
"build": "rollup --config",
"watch": "rollup --config --watch",
"lint": "./node_modules/eslint/bin/eslint.js ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakubfiala/atrament.git"
},
"keywords": [
"canvas",
"drawing",
"handwriting",
"graphics"
],
"author": "Jakub Fiala",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/jakubfiala/atrament/issues"
},
"homepage": "https://github.com/jakubfiala/atrament#readme",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"dependencies": {
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"rollup": "^4.9.4",
"rollup-plugin-web-worker-loader": "^1.6.1"
},
"overrides": {
"rollup-plugin-web-worker-loader": {
"rollup": "$rollup"
}
}
}