-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.6 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.6 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
{
"name": "cffjs",
"version": "0.1.0",
"description": "Types and utilities for working with CITATION.cff files in Typescript",
"author": "Rowan Cockett <rowan@continuousfoundation.org>",
"homepage": "https://github.com/continuous-foundation/cffjs",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"citation-cff",
"open-science",
"publishing"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/continuous-foundation/cffjs.git"
},
"scripts": {
"prepublishOnly": "bun test && bun run build",
"clean": "rm -rf dist",
"test": "bun test",
"test:watch": "bun test --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint \"src/**/!(*.spec).ts\" -c ./.eslintrc.cjs",
"lint:format": "prettier --check \"src/**/*.{ts,tsx,md}\"",
"build:esm": "tsc",
"build": "bun run clean && bun run build:esm",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish && git push --follow-tags"
},
"bugs": {
"url": "https://github.com/continuous-foundation/cffjs/issues"
},
"dependencies": {
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"js-yaml": "^4.1.1",
"myst-frontmatter": "^1.9.5"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@types/bun": "latest",
"@types/js-yaml": "4.0.9",
"@types/node": "^25.6.0",
"eslint-config-curvenote": "^0.0.4",
"prettier": "latest",
"typescript": "^6.0.3"
}
}