forked from rough-stuff/rough-notation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.04 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
{
"name": "@slidev/rough-notation",
"type": "module",
"version": "0.1.0",
"description": "Create and animate hand-drawn annotations on a web page",
"author": "Preet Shihn",
"license": "MIT",
"homepage": "https://github.com/slidevjs/rough-notation#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/slidevjs/rough-notation.git"
},
"bugs": {
"url": "https://github.com/slidevjs/rough-notation/issues"
},
"keywords": [
"annotate",
"rough",
"sketchy"
],
"exports": {
".": {
"import": "./dist/index.mjs"
}
},
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"prepack": "npm run build",
"release": "bumpp && pnpm publish",
"lint": "eslint ."
},
"dependencies": {
"roughjs": "^4.6.6"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.4",
"bumpp": "^9.3.0",
"eslint": "^8.57.0",
"typescript": "^5.3.3",
"unbuild": "^2.0.0"
}
}