-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 1.99 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "purrlet",
"version": "2.0.0",
"description": "A lightweight headless canvas drawing engine for building interactive drawing tools and websites. meow",
"type": "module",
"main": "./dist/purrlet.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/purrlet.mjs",
"default": "./dist/purrlet.mjs"
}
},
"contributors": [
{
"name": "Bang1338",
"url": "https://github.com/Bang1338"
},
{
"name": "spacebxr",
"url": "https://spacebxr.pages.dev/",
"email": "spacebxr112@gmail.com"
},
{
"name": "BuddyWinte",
"url": "https://buddywinte.xyz/",
"email": "buddywinte@gmail.com"
}
],
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"clean": "rm -rf dist",
"dev": "rollup -c --watch",
"build": "rollup -c",
"test": "npm run build && npm test || echo \"No tests found\"",
"prepublishOnly": "npm run build",
"lint": "eslint ."
},
"keywords": [
"drawbox",
"drawing"
],
"sideEffects": false,
"author": "BuddyWinte",
"license": "PolyForm-Noncommercial-1.0.0",
"homepage": "https://github.com/BuddyWinte/Purrlet",
"repository": {
"type": "git",
"url": "https://github.com/BuddyWinte/Purrlet.git"
},
"typesVersions": {
"*": {
"*": [
"dist/index.d.ts"
]
}
},
"packageManager": "bun@1.3.14",
"bugs": {
"url": "https://github.com/BuddyWinte/Purrlet/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/BuddyWinte"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"eslint": "^10.8.0",
"prettier": "^3.8.1",
"rollup": "^4.57.1",
"rollup-plugin-dts": "^6.4.1",
"typescript": "^6.0.3"
},
"dependencies": {
"tslib": "^2.8.1"
}
}