-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.59 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.59 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
{
"name": "@markwhen/parser",
"version": "1.0.1",
"description": "Markwhen parser",
"type": "module",
"main": "cjs/index.js",
"exports": {
"require": "./cjs/index.js",
"import": "./lib/index.js"
},
"scripts": {
"test": "jest",
"test:verbose": "jest --verbose false --silent false",
"test:profile": "node --inspect-brk ./node_modules/jest/bin/jest.js",
"build": "tsc && vite build && echo '{\"type\": \"commonjs\"}' > cjs/package.json",
"prepublish": "tsc && jest",
"watch": "tsc-watch --onSuccess \"yalc push --update\"",
"bump": "node scripts/bumper.js patch",
"bump:major": "node scripts/bumper.js major",
"bump:minor": "node scripts/bumper.js minor",
"bump:patch": "node scripts/bumper.js patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mark-when/parser.git"
},
"keywords": [
"markwhen",
"parser",
"timeline"
],
"author": "Rob Koch",
"license": "MIT",
"bugs": {
"url": "https://github.com/mark-when/parser/issues"
},
"homepage": "https://github.com/mark-when/parser#readme",
"dependencies": {
"@codemirror/state": "^6.5.2",
"@markwhen/rrule": "^2.8.2",
"ical.js": "^2.1.0",
"lru-cache": "^11.2.2",
"luxon": "^3.7.2",
"yaml": "^2.8.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/luxon": "^3.7.1",
"@types/node": "^24.10.4",
"jest": "^29.7.0",
"ts-jest": "^29.4.4",
"tsc-watch": "^7.1.1",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-plugin-dts": "^3.9.1"
},
"files": [
"lib/**/*",
"cjs/**/*"
]
}