-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.44 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.44 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
{
"name": "ncms-plugin-segment",
"type": "module",
"version": "0.3.1",
"description": "Plugin template for NotionCMS",
"author": "Jacob Milhorn",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/agency-kit/ncms-plugin-segment.git"
},
"keywords": [
"notionCMS",
"CMS",
"plugin",
"notion-api",
"static site generation"
],
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && tsc --project ./tsconfig.json && rollup -c && npm pack",
"ex": "node example/index.mjs",
"build:ex": "npm run build && npm run ex",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"changeset": "changeset",
"version": "changeset version",
"publish": "changeset publish",
"test": "NODE_OPTIONS=--enable-source-maps npx c8 uvu test",
"build:test": "npm run build && npm run test"
},
"dependencies": {
"@agency-kit/notion-cms": "0.x.x"
},
"devDependencies": {
"@antfu/eslint-config": "^0.38.4",
"@changesets/cli": "^2.26.1",
"@rollup/plugin-terser": "^0.4.0",
"c8": "^7.13.0",
"dotenv": "^16.0.3",
"esbuild": "^0.17.15",
"eslint": "^8.38.0",
"fp-ts": "^2.13.1",
"lint-staged": "^13.2.1",
"rollup": "^3.20.2",
"rollup-plugin-esbuild": "^5.0.0",
"simple-git-hooks": "^2.8.1",
"uvu": "^0.5.6"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}