@scurrlin/stencil
Version:
A memorization tool that strips code down to first letters and punctuation only.
52 lines (51 loc) • 1.05 kB
JSON
{
"name": "@scurrlin/stencil",
"version": "1.34.6",
"type": "module",
"description": "A memorization tool that strips code down to first letters and punctuation only.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"bin": {
"stencil": "./dist/bin/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE.txt"
],
"engines": {
"node": ">=22"
},
"scripts": {
"start": "node dist/bin/cli.js",
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build && npm test"
},
"dependencies": {
"yargs": "^17.7.2"
},
"keywords": [
"stencil",
"memory",
"study",
"interview",
"leetcode"
],
"author": "Sean Currlin",
"license": "MIT",
"devDependencies": {
"@types/node": "^25.5.0",
"@types/yargs": "^17.0.35",
"typescript": "^6.0.2",
"vite": "^8.0.2",
"vitest": "^4.1.1"
}
}