-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.22 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
46
47
48
49
50
51
52
{
"name": "fff-flavored-frontmatter",
"type": "module",
"version": "1.2.1",
"description": "Type definition of the FFF Flavored Frontmatter.",
"author": "藍+85CD",
"license": "WTFPL",
"homepage": "https://fff.js.org",
"repository": {
"type": "git",
"url": "https://github.com/importantimport/fff.git",
"directory": "packages/fff-flavored-frontmatter"
},
"bugs": "https://github.com/importantimport/fff/issues",
"keywords": [
"fff",
"fff-flavored-frontmatter",
"front",
"frontmatter",
"front matter",
"front-matter",
"typescript"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "vitest run",
"test:watch": "vitest",
"api-extractor": "api-extractor run --local --verbose"
}
}