-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.58 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
57
58
59
60
{
"name": "jswt",
"version": "2.0.3",
"description": "Turn on transpile-free type hinting for your vanilla JS projects #JSWithTypes",
"main": "./jswt.js",
"files": [
".github/*",
"jswt.js",
"bin/*.js",
"lib/*.js",
"tests/*.js"
],
"bin": {
"jswt": "bin/jswt.js",
"init": "bin/jswt-init.js",
"reexport": "bin/jswt-reexport.js"
},
"type": "module",
"imports": {
"jswt": "./jswt.js"
},
"exports": {
".": "./jswt.js",
"./*": "./*"
},
"scripts": {
"bump": "npm version -m \"chore(release): bump to v%s\"",
"fmt": "npm run prettier",
"lint": "npm run tsc && npm run jshint",
"prepublish": "npm run reexport-types",
"jshint": "npx -p jshint@2.x -- jshint -c ./.jshintrc ./*.js ./lib",
"prettier": "npx -p prettier@3.x -- prettier -w '**/*.{js,md}'",
"reexport-types": "node ./bin/jswt-reexport.js",
"tsc": "! npx -p typescript@5.x -- tsc -p ./jsconfig.json | grep '\\.js(\\d\\+,\\d\\+): error' | grep -v '\\<node_modules/'",
"test": "node ./tests/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BeyondCodeBootcamp/jswt.git"
},
"keywords": [
"JSWithTypes",
"types",
"typed",
"vanillajs",
"type",
"hinting",
"linting",
"checking"
],
"author": "AJ ONeal <aj@therootcompany.com> (https://throotcompany.com/)",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/BeyondCodeBootcamp/jswt/issues"
},
"homepage": "https://github.com/BeyondCodeBootcamp/jswt#readme",
"devDependencies": {
"@types/node": "^22.10.2"
}
}