-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.15 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.15 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
{
"name": "@kanf/wema",
"version": "0.3.1",
"description": "A framework-agnostic TypeScript library for placing sticky notes on a web board",
"type": "module",
"main": "./dist/wema.umd.js",
"module": "./dist/wema.js",
"types": "./dist/wema.d.ts",
"exports": {
".": {
"types": "./dist/wema.d.ts",
"import": "./dist/wema.js",
"require": "./dist/wema.umd.js"
},
"./style.css": "./dist/wema.css"
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "npm run build:lib && npm run build:standalone",
"build:lib": "vite build",
"build:standalone": "tsx scripts/build-standalone.ts",
"test": "vitest run",
"lint": "tsc --noEmit"
},
"devDependencies": {
"jsdom": "^28.1.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.3.0",
"vitest": "^4.0.18"
},
"keywords": [
"sticky-notes",
"board",
"canvas",
"wema"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kan/wema.git"
},
"homepage": "https://github.com/kan/wema",
"bugs": "https://github.com/kan/wema/issues"
}