-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.01 KB
/
package.json
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
{
"name": "@postdfm/ast",
"version": "9.0.0",
"description": "Abstract Syntax Tree classes for postdfm",
"type": "module",
"exports": {
".": "./dist/index.js",
"./*": "./dist/*.js"
},
"typesVersions": {
"*": {
"*": [
"./dist/*.d.ts"
]
}
},
"scripts": {
"compile": "tsc --listEmittedFiles",
"compile:map": "tsc --listEmittedFiles --inlineSourceMap --inlineSources",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage --verbose",
"docs": "typedoc --options typedoc.config.cjs"
},
"author": "SpiltCoffee",
"license": "MIT",
"bugs": {
"url": "https://github.com/spiltcoffee/postdfm/issues"
},
"homepage": "https://github.com/spiltcoffee/postdfm#readme",
"files": [
"/dist",
"README.md"
],
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"cross-env": "^7.0.3",
"jest": "^27.5.1",
"typedoc": "^0.25.8",
"typescript": "^4.9.5"
}
}