Skip to content

Commit 717e539

Browse files
committed
init
0 parents  commit 717e539

10 files changed

+1626
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
dist
2+
node_modules

.vscode/extensions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"esbenp.prettier-vscode"
4+
]
5+
}

.vscode/settings.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"editor.formatOnSave": true,
3+
"editor.codeActionsOnSave": {
4+
"source.organizeImports": "explicit"
5+
},
6+
"[typescript][json][markdown]": {
7+
"editor.defaultFormatter": "esbenp.prettier-vscode"
8+
}
9+
}

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) Alec Larson
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

package.json

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"name": "picotask",
3+
"type": "module",
4+
"version": "0.0.0",
5+
"exports": {
6+
"types": "./dist/task.d.ts",
7+
"default": "./dist/task.js"
8+
},
9+
"files": [
10+
"dist"
11+
],
12+
"license": "MIT",
13+
"author": "Alec Larson",
14+
"repository": {
15+
"type": "git",
16+
"url": "https://github.com/alloc/picotask.git"
17+
},
18+
"prettier": "@alloc/prettier-config",
19+
"scripts": {
20+
"dev": "rimraf dist && tsup --sourcemap --watch",
21+
"build": "rimraf dist && tsup",
22+
"format": "prettier --write .",
23+
"lint": "tsc-lint",
24+
"test": "vitest",
25+
"prepublishOnly": "pnpm build"
26+
},
27+
"devDependencies": {
28+
"@alloc/prettier-config": "^1.0.0",
29+
"@types/node": "^22.13.14",
30+
"prettier": "^3.5.3",
31+
"radashi": "^12.4.0",
32+
"rimraf": "^6.0.1",
33+
"tsc-lint": "^0.1.8",
34+
"tsup": "^8.4.0",
35+
"typescript": "^5.8.2"
36+
},
37+
"dependencies": {
38+
"picocolors": "^1.1.1",
39+
"picospin": "^1.0.1",
40+
"strip-ansi": "^7.1.0"
41+
}
42+
}

0 commit comments

Comments
 (0)