generated from finsweet/developer-starter
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
61 lines (61 loc) · 1.67 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
58
59
60
61
{
"name": "@finsweet/ts-utils",
"version": "0.40.0",
"description": "Typescript utils for custom Webflow projects.",
"type": "module",
"main": "dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/finsweet/ts-utils.git"
},
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"build": "tsc",
"lint": "eslint --ignore-path .gitignore ./src && prettier --check ./src",
"lint:fix": "eslint --ignore-path .gitignore ./src --fix",
"check": "tsc --noEmit",
"format": "prettier --write ./src",
"release": "changeset publish",
"update": "pnpm update -i -L"
},
"keywords": [
"webflow",
"finsweet",
"no-code",
"typescript",
"utils"
],
"author": {
"name": "Finsweet",
"url": "https://www.finsweet.com/"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/finsweet/ts-utils/issues"
},
"homepage": "https://github.com/finsweet/ts-utils#readme",
"devDependencies": {
"@changesets/changelog-git": "^0.1.14",
"@changesets/cli": "^2.26.0",
"@finsweet/docs-theme": "^0.1.8",
"@finsweet/eslint-config": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"prettier": "^2.8.4",
"typescript": "^4.9.5",
"vitepress": "1.0.0-alpha.50",
"vue": "^3.2.47"
}
}