-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.73 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": "@web-pacotes/flutter-version-finder",
"version": "0.0.2",
"description": "Micro library that finds the appropriate Flutter version to use on a Flutter project",
"main": "dist/index.js",
"module": "dist/index.cjs",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --sourcemap",
"start": "swc src/* -d dist && swc example/index.ts -d example/dist && node example/dist/index.js",
"test": "jest",
"docs": "typedoc",
"docs:publish": "typedoc && gh-pagez -d docs -t true",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"release": "changeset",
"publish": "npm run build && changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/web-pacotes/flutter-version-finder.git"
},
"keywords": [
"typescript",
"prettier",
"eslint",
"jest",
"hot",
"git",
"hooks",
"starter"
],
"author": "web-pacotes",
"license": "MIT",
"bugs": {
"url": "https://github.com/web-pacotes/flutter-version-finder/issues"
},
"homepage": "https://github.com/web-pacotes/flutter-version-finder#readme",
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@freitzzz/gh-pagez": "^5.0.1",
"@jest/globals": "^29.5.0",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.51",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"ts-node": "^10.9.1",
"typedoc": "^0.24.6",
"prettier": "^2.8.7",
"ts-jest": "^29.1.0",
"tsup": "^6.7.0",
"typescript": "^5.0.4"
},
"bin": "bin/index.mjs"
}