-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.41 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
53
54
55
56
57
{
"name": "notion-formula-generator",
"version": "2.0.2",
"description": "Generate Notion formulas with typescript code",
"dependencies": {
"prettier-eslint": "^15.0.1",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.4",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@changesets/cli": "^2.27.8",
"@eslint/js": "^9.10.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"babel-jest": "^29.5.0",
"eslint": "^8.57.1",
"globals": "^15.9.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4",
"typescript-eslint": "^8.6.0"
},
"scripts": {
"test": "jest",
"lint": "npx eslint src/*",
"build": "tsc",
"check-exports": "attw --pack .",
"local-release": "changeset version && changeset publish"
},
"author": "Charlie Palm",
"license": "MIT",
"main": "dist/index.js",
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CharliePalm/Francis.git"
},
"keywords": [
"Notion",
"codegen"
],
"bugs": {
"url": "https://github.com/CharliePalm/Francis/issues"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": false,
"singleQuote": true
},
"homepage": "https://github.com/CharliePalm/Francis#readme"
}