mirror of
https://github.com/NixOS/templates.git
synced 2026-01-12 17:28:25 +01:00
* added a typescript-pnpm template * moved to pnpm subfolder * fixed missing semicolon * made use of markup for welcome text * removed vscodium from template to simplify * added typescript-p5js template, and cleaned up the welcome text for typescript templates * fixed extraneous }; * added .envrc to typescript templates * fixed bug in p5js template * replaced package name and removed unnecessary allowUnfree from typescript templates * fixed p5js not being imported by default * Update typescript/pnpm-p5js/flake.nix Co-authored-by: tomberek <tomberek@users.noreply.github.com> --------- Co-authored-by: tomberek <tomberek@users.noreply.github.com>
23 lines
471 B
JSON
23 lines
471 B
JSON
{
|
|
"name": "typescript-pnpm-template",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.ts",
|
|
"scripts": {
|
|
"start": "webpack serve --open"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"lodash": "^4.17.21",
|
|
"typescript": "^5.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/lodash": "^4.17.0",
|
|
"ts-loader": "^9.5.1",
|
|
"webpack": "^5.91.0",
|
|
"webpack-cli": "^5.1.4",
|
|
"webpack-dev-server": "^5.0.4"
|
|
}
|
|
}
|