forked from jakubfiala/atrament
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.28 KB
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
{
"name": "atrament",
"version": "5.1.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"
},
"./fill": {
"import": "./dist/esm/fill.js",
"require": "./dist/cjs/fill.js"
}
},
"devDependencies": {
"@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"
}
}
}